2020-05-07 19:51:06 +01:00
|
|
|
"""flow urls"""
|
2020-05-07 20:30:52 +01:00
|
|
|
from django.urls import path
|
|
|
|
|
2020-05-08 15:50:50 +01:00
|
|
|
from passbook.flows.views import FlowExecutorView, FlowPermissionDeniedView
|
2020-05-07 20:30:52 +01:00
|
|
|
|
|
|
|
urlpatterns = [
|
2020-05-08 15:50:50 +01:00
|
|
|
path("denied/", FlowPermissionDeniedView.as_view(), name="denied"),
|
2020-05-09 23:05:36 +01:00
|
|
|
path("<slug:flow_slug>/", FlowExecutorView.as_view(), name="flow-executor"),
|
2020-05-07 20:30:52 +01:00
|
|
|
]
|