flows/: more migration progress, consolidate views
This commit is contained in:
@ -1,2 +1,18 @@
|
||||
"""flow urls"""
|
||||
urlpatterns = []
|
||||
from django.urls import path
|
||||
|
||||
from passbook.flows.view import AuthenticationView, FactorPermissionDeniedView
|
||||
|
||||
urlpatterns = [
|
||||
path("auth/process/", AuthenticationView.as_view(), name="auth-process"),
|
||||
path(
|
||||
"auth/process/<slug:factor>/",
|
||||
AuthenticationView.as_view(),
|
||||
name="auth-process",
|
||||
),
|
||||
path(
|
||||
"auth/process/denied/",
|
||||
FactorPermissionDeniedView.as_view(),
|
||||
name="auth-denied",
|
||||
),
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user