rename auth.auth to auth.process
This fixes some ambiguity around imports.
This commit is contained in:
parent
dccb553834
commit
31b77cf232
15 changed files with 15 additions and 15 deletions
|
@ -6,9 +6,9 @@ from flask import redirect, Blueprint, abort, send_file, make_response, request
|
|||
import features
|
||||
|
||||
from app import app, signer, storage, metric_queue
|
||||
from auth.auth import process_auth
|
||||
from auth.auth_context import get_authenticated_user
|
||||
from auth.permissions import ReadRepositoryPermission
|
||||
from auth.process import process_auth
|
||||
from data import database
|
||||
from data.interfaces.verbs import pre_oci_model as model
|
||||
from endpoints.common import route_show_if, parse_repository_name
|
||||
|
|
Reference in a new issue