Refactor JWT auth to not import app locally
This commit is contained in:
parent
ee154c37a8
commit
331c300893
4 changed files with 27 additions and 24 deletions
2
app.py
2
app.py
|
@ -113,7 +113,7 @@ analytics = Analytics(app)
|
|||
billing = Billing(app)
|
||||
sentry = Sentry(app)
|
||||
build_logs = BuildLogs(app)
|
||||
authentication = UserAuthentication(app)
|
||||
authentication = UserAuthentication(app, OVERRIDE_CONFIG_DIRECTORY)
|
||||
userevents = UserEventsBuilderModule(app)
|
||||
superusers = SuperUserManager(app)
|
||||
signer = Signer(app, OVERRIDE_CONFIG_DIRECTORY)
|
||||
|
|
Reference in a new issue