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

@ -4,8 +4,8 @@ from flask import request, make_response, Blueprint
from app import billing as stripe
from data import model
from auth.decorators import process_auth
from auth.permissions import ModifyRepositoryPermission
from auth.process import process_auth
from util.invoice import renderInvoiceToHtml
from util.useremails import send_invoice_email, send_subscription_change, send_payment_failed
from util.http import abort