Move auth decorators into a decorators module
The non-decorators will be broken out in the followup change
This commit is contained in:
parent
abf179eb09
commit
1bd4422da9
14 changed files with 14 additions and 12 deletions
|
@ -5,7 +5,7 @@ from flask import request, Blueprint, abort, Response
|
|||
from flask_login import current_user
|
||||
|
||||
from app import userevents
|
||||
from auth.process import require_session_login
|
||||
from auth.decorators import require_session_login
|
||||
from data.userevent import CannotReadUserEventsException
|
||||
|
||||
|
||||
|
|
Reference in a new issue