First stab at LDAP integration.

This commit is contained in:
Jake Moshenko 2014-05-09 17:39:43 -04:00
parent 580bb152fe
commit 027ada1f5c
6 changed files with 136 additions and 3 deletions

4
app.py
View file

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