flows: fix denied view not being registered
This commit is contained in:
@ -1,8 +1,9 @@
|
||||
"""flow urls"""
|
||||
from django.urls import path
|
||||
|
||||
from passbook.flows.views import FlowExecutorView
|
||||
from passbook.flows.views import FlowExecutorView, FlowPermissionDeniedView
|
||||
|
||||
urlpatterns = [
|
||||
path("<slug:flow_slug>/", FlowExecutorView.as_view(), name="flow-executor"),
|
||||
path("denied/", FlowPermissionDeniedView.as_view(), name="denied"),
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user