Adding the ability to silence notifications on creation. (#490)

This commit is contained in:
kevgliss
2016-11-12 09:29:42 -08:00
committed by GitHub
parent 0334f1094d
commit 114deba06e
3 changed files with 4 additions and 0 deletions

View File

@ -103,6 +103,7 @@ class Certificate(db.Model):
if kwargs.get('chain'):
self.chain = kwargs['chain'].strip()
self.notify = kwargs.get('notify', True)
self.destinations = kwargs.get('destinations', [])
self.notifications = kwargs.get('notifications', [])
self.description = kwargs.get('description')