admin: add flows

This commit is contained in:
Jens Langhammer
2020-05-08 18:45:53 +02:00
parent 872ecd93a6
commit 08c0eb2ec6
10 changed files with 219 additions and 20 deletions

View File

@ -7,6 +7,7 @@ from passbook.admin.views import (
certificate_key_pair,
debug,
factors,
flows,
groups,
invitations,
overview,
@ -97,6 +98,15 @@ urlpatterns = [
factors.FactorDeleteView.as_view(),
name="factor-delete",
),
# Flows
path("flows/", flows.FlowListView.as_view(), name="flows"),
path("flows/create/", flows.FlowCreateView.as_view(), name="flow-create",),
path(
"flows/<uuid:pk>/update/", flows.FlowUpdateView.as_view(), name="flow-update",
),
path(
"flows/<uuid:pk>/delete/", flows.FlowDeleteView.as_view(), name="flow-delete",
),
# Factors
path(
"property-mappings/",