Move auth decorators into a decorators module

The non-decorators will be broken out in the followup change
This commit is contained in:
Joseph Schorr 2017-03-16 16:50:09 -04:00
parent abf179eb09
commit 1bd4422da9
14 changed files with 14 additions and 12 deletions

View file

@ -8,7 +8,7 @@ import features
from app import app, analytics, get_app_url, oauth_login, authentication
from auth.auth_context import get_authenticated_user
from auth.process import require_session_login
from auth.decorators import require_session_login
from data import model
from endpoints.common import common_login
from endpoints.web import index