Fixing templates
This commit is contained in:
parent
350f58ec9d
commit
6d17e4d538
|
@ -36,13 +36,16 @@ def _get_message_data(cert):
|
||||||
:param cert:
|
:param cert:
|
||||||
:return:
|
:return:
|
||||||
"""
|
"""
|
||||||
cert_dict = cert.as_dict()
|
cert_dict = {}
|
||||||
|
|
||||||
if cert.user:
|
if cert.user:
|
||||||
cert_dict['creator'] = cert.user.email
|
cert_dict['creator'] = cert.user.email
|
||||||
|
|
||||||
cert_dict['domains'] = [x .name for x in cert.domains]
|
cert_dict['not_after'] = cert.not_after
|
||||||
cert_dict['superseded'] = list(set([x.name for x in _find_superseded(cert) if cert.name != x]))
|
cert_dict['owner'] = cert.owner
|
||||||
|
cert_dict['name'] = cert.name
|
||||||
|
cert_dict['body'] = cert.body
|
||||||
|
|
||||||
return cert_dict
|
return cert_dict
|
||||||
|
|
||||||
|
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue