stages/identification: load uid_fields from stage in form, add more unit tests

This commit is contained in:
Jens Langhammer
2020-05-10 00:05:36 +02:00
parent fd5b2298e5
commit 8e488670ad
6 changed files with 100 additions and 10 deletions

View File

@ -4,6 +4,6 @@ from django.urls import path
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"),
path("<slug:flow_slug>/", FlowExecutorView.as_view(), name="flow-executor"),
]