Refactor JWT auth to not import app locally

This commit is contained in:
Joseph Schorr 2015-06-12 17:58:19 -04:00
parent ee154c37a8
commit 331c300893
4 changed files with 27 additions and 24 deletions

2
app.py
View file

@ -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)