Adding the lemur identity to be able to re-issue certificates. (#949)
This commit is contained in:
parent
f5213deb67
commit
90f4b458e3
|
@ -10,6 +10,7 @@ import sys
|
||||||
from flask import current_app
|
from flask import current_app
|
||||||
|
|
||||||
from flask_script import Manager
|
from flask_script import Manager
|
||||||
|
from flask_principal import Identity, identity_changed
|
||||||
|
|
||||||
from lemur import database
|
from lemur import database
|
||||||
from lemur.extensions import sentry
|
from lemur.extensions import sentry
|
||||||
|
@ -122,6 +123,9 @@ def request_reissue(certificate, commit):
|
||||||
:param commit:
|
:param commit:
|
||||||
:return:
|
:return:
|
||||||
"""
|
"""
|
||||||
|
# set the lemur identity for all cli commands
|
||||||
|
identity_changed.send(current_app._get_current_object(), identity=Identity(1))
|
||||||
|
|
||||||
details = get_certificate_primitives(certificate)
|
details = get_certificate_primitives(certificate)
|
||||||
print_certificate_details(details)
|
print_certificate_details(details)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue