First stab at LDAP integration.
This commit is contained in:
parent
580bb152fe
commit
027ada1f5c
6 changed files with 136 additions and 3 deletions
4
app.py
4
app.py
|
@ -10,6 +10,7 @@ import features
|
|||
|
||||
from storage import Storage
|
||||
from data.userfiles import Userfiles
|
||||
from data.users import UserAuthentication
|
||||
from util.analytics import Analytics
|
||||
from util.exceptionlog import Sentry
|
||||
from data.billing import Billing
|
||||
|
@ -46,3 +47,6 @@ userfiles = Userfiles(app)
|
|||
analytics = Analytics(app)
|
||||
billing = Billing(app)
|
||||
sentry = Sentry(app)
|
||||
|
||||
from data import model
|
||||
authentication = UserAuthentication(app, model)
|
||||
|
|
Reference in a new issue