2018-11-11 12:41:48 +00:00
|
|
|
"""passbook URL Configuration"""
|
2019-10-28 13:26:34 +00:00
|
|
|
from django.urls import path
|
2018-12-26 23:38:42 +00:00
|
|
|
|
2019-12-31 11:51:16 +00:00
|
|
|
from passbook.admin.views import (
|
|
|
|
applications,
|
2020-03-03 22:35:25 +00:00
|
|
|
certificate_key_pair,
|
2020-05-08 16:45:53 +00:00
|
|
|
flows,
|
2019-12-31 11:51:16 +00:00
|
|
|
groups,
|
2020-09-02 22:04:12 +00:00
|
|
|
outposts,
|
2020-11-04 12:01:38 +00:00
|
|
|
outposts_service_connections,
|
2019-12-31 11:51:16 +00:00
|
|
|
overview,
|
2020-05-16 17:55:59 +00:00
|
|
|
policies,
|
|
|
|
policies_bindings,
|
2020-11-04 12:01:38 +00:00
|
|
|
property_mappings,
|
2019-12-31 11:51:16 +00:00
|
|
|
providers,
|
|
|
|
sources,
|
2020-05-08 17:46:39 +00:00
|
|
|
stages,
|
2020-05-16 17:55:59 +00:00
|
|
|
stages_bindings,
|
2020-05-16 19:43:48 +00:00
|
|
|
stages_invitations,
|
2020-05-16 17:55:59 +00:00
|
|
|
stages_prompts,
|
2020-10-16 09:28:54 +00:00
|
|
|
tasks,
|
2020-07-01 10:26:07 +00:00
|
|
|
tokens,
|
2019-12-31 11:51:16 +00:00
|
|
|
users,
|
|
|
|
)
|
2018-12-26 23:38:42 +00:00
|
|
|
|
2018-11-11 12:41:48 +00:00
|
|
|
urlpatterns = [
|
2020-11-21 18:10:05 +00:00
|
|
|
path(
|
|
|
|
"overview/cache/flow/",
|
|
|
|
overview.FlowCacheClearView.as_view(),
|
|
|
|
name="overview-clear-flow-cache",
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"overview/cache/policy/",
|
|
|
|
overview.PolicyCacheClearView.as_view(),
|
|
|
|
name="overview-clear-policy-cache",
|
|
|
|
),
|
2020-11-20 21:46:05 +00:00
|
|
|
path("overview/", overview.AdministrationOverviewView.as_view(), name="overview"),
|
2018-11-26 21:08:18 +00:00
|
|
|
# Applications
|
2019-12-31 11:51:16 +00:00
|
|
|
path(
|
|
|
|
"applications/", applications.ApplicationListView.as_view(), name="applications"
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"applications/create/",
|
|
|
|
applications.ApplicationCreateView.as_view(),
|
|
|
|
name="application-create",
|
|
|
|
),
|
|
|
|
path(
|
2020-05-22 21:22:40 +00:00
|
|
|
"applications/<uuid:pk>/update/",
|
2019-12-31 11:51:16 +00:00
|
|
|
applications.ApplicationUpdateView.as_view(),
|
|
|
|
name="application-update",
|
|
|
|
),
|
|
|
|
path(
|
2020-05-22 21:22:40 +00:00
|
|
|
"applications/<uuid:pk>/delete/",
|
2019-12-31 11:51:16 +00:00
|
|
|
applications.ApplicationDeleteView.as_view(),
|
|
|
|
name="application-delete",
|
|
|
|
),
|
2020-07-01 10:26:07 +00:00
|
|
|
# Tokens
|
|
|
|
path("tokens/", tokens.TokenListView.as_view(), name="tokens"),
|
|
|
|
path(
|
|
|
|
"tokens/<uuid:pk>/delete/",
|
|
|
|
tokens.TokenDeleteView.as_view(),
|
|
|
|
name="token-delete",
|
|
|
|
),
|
2018-11-26 21:09:04 +00:00
|
|
|
# Sources
|
2019-12-31 11:51:16 +00:00
|
|
|
path("sources/", sources.SourceListView.as_view(), name="sources"),
|
|
|
|
path("sources/create/", sources.SourceCreateView.as_view(), name="source-create"),
|
|
|
|
path(
|
2020-05-20 14:09:53 +00:00
|
|
|
"sources/<uuid:pk>/update/",
|
2019-12-31 11:51:16 +00:00
|
|
|
sources.SourceUpdateView.as_view(),
|
|
|
|
name="source-update",
|
|
|
|
),
|
|
|
|
path(
|
2020-05-20 14:09:53 +00:00
|
|
|
"sources/<uuid:pk>/delete/",
|
2019-12-31 11:51:16 +00:00
|
|
|
sources.SourceDeleteView.as_view(),
|
|
|
|
name="source-delete",
|
|
|
|
),
|
2019-02-16 09:24:31 +00:00
|
|
|
# Policies
|
2020-05-16 17:55:59 +00:00
|
|
|
path("policies/", policies.PolicyListView.as_view(), name="policies"),
|
|
|
|
path("policies/create/", policies.PolicyCreateView.as_view(), name="policy-create"),
|
2019-12-31 11:51:16 +00:00
|
|
|
path(
|
|
|
|
"policies/<uuid:pk>/update/",
|
2020-05-16 17:55:59 +00:00
|
|
|
policies.PolicyUpdateView.as_view(),
|
2019-12-31 11:51:16 +00:00
|
|
|
name="policy-update",
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"policies/<uuid:pk>/delete/",
|
2020-05-16 17:55:59 +00:00
|
|
|
policies.PolicyDeleteView.as_view(),
|
2019-12-31 11:51:16 +00:00
|
|
|
name="policy-delete",
|
|
|
|
),
|
|
|
|
path(
|
2020-05-16 17:55:59 +00:00
|
|
|
"policies/<uuid:pk>/test/",
|
|
|
|
policies.PolicyTestView.as_view(),
|
|
|
|
name="policy-test",
|
|
|
|
),
|
|
|
|
# Policy bindings
|
|
|
|
path(
|
|
|
|
"policies/bindings/",
|
|
|
|
policies_bindings.PolicyBindingListView.as_view(),
|
|
|
|
name="policies-bindings",
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"policies/bindings/create/",
|
|
|
|
policies_bindings.PolicyBindingCreateView.as_view(),
|
|
|
|
name="policy-binding-create",
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"policies/bindings/<uuid:pk>/update/",
|
|
|
|
policies_bindings.PolicyBindingUpdateView.as_view(),
|
|
|
|
name="policy-binding-update",
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"policies/bindings/<uuid:pk>/delete/",
|
|
|
|
policies_bindings.PolicyBindingDeleteView.as_view(),
|
|
|
|
name="policy-binding-delete",
|
2019-12-31 11:51:16 +00:00
|
|
|
),
|
2018-11-26 21:40:10 +00:00
|
|
|
# Providers
|
2019-12-31 11:51:16 +00:00
|
|
|
path("providers/", providers.ProviderListView.as_view(), name="providers"),
|
|
|
|
path(
|
|
|
|
"providers/create/",
|
|
|
|
providers.ProviderCreateView.as_view(),
|
|
|
|
name="provider-create",
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"providers/<int:pk>/update/",
|
|
|
|
providers.ProviderUpdateView.as_view(),
|
|
|
|
name="provider-update",
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"providers/<int:pk>/delete/",
|
|
|
|
providers.ProviderDeleteView.as_view(),
|
|
|
|
name="provider-delete",
|
|
|
|
),
|
2020-05-08 17:46:39 +00:00
|
|
|
# Stages
|
|
|
|
path("stages/", stages.StageListView.as_view(), name="stages"),
|
|
|
|
path("stages/create/", stages.StageCreateView.as_view(), name="stage-create"),
|
2019-12-31 11:51:16 +00:00
|
|
|
path(
|
2020-05-08 17:46:39 +00:00
|
|
|
"stages/<uuid:pk>/update/",
|
|
|
|
stages.StageUpdateView.as_view(),
|
|
|
|
name="stage-update",
|
2019-12-31 11:51:16 +00:00
|
|
|
),
|
|
|
|
path(
|
2020-05-08 17:46:39 +00:00
|
|
|
"stages/<uuid:pk>/delete/",
|
|
|
|
stages.StageDeleteView.as_view(),
|
|
|
|
name="stage-delete",
|
2019-12-31 11:51:16 +00:00
|
|
|
),
|
2020-05-16 17:55:59 +00:00
|
|
|
# Stage bindings
|
|
|
|
path(
|
|
|
|
"stages/bindings/",
|
|
|
|
stages_bindings.StageBindingListView.as_view(),
|
|
|
|
name="stage-bindings",
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"stages/bindings/create/",
|
|
|
|
stages_bindings.StageBindingCreateView.as_view(),
|
|
|
|
name="stage-binding-create",
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"stages/bindings/<uuid:pk>/update/",
|
|
|
|
stages_bindings.StageBindingUpdateView.as_view(),
|
|
|
|
name="stage-binding-update",
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"stages/bindings/<uuid:pk>/delete/",
|
|
|
|
stages_bindings.StageBindingDeleteView.as_view(),
|
|
|
|
name="stage-binding-delete",
|
|
|
|
),
|
|
|
|
# Stage Prompts
|
|
|
|
path(
|
|
|
|
"stages/prompts/",
|
|
|
|
stages_prompts.PromptListView.as_view(),
|
|
|
|
name="stage-prompts",
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"stages/prompts/create/",
|
|
|
|
stages_prompts.PromptCreateView.as_view(),
|
|
|
|
name="stage-prompt-create",
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"stages/prompts/<uuid:pk>/update/",
|
|
|
|
stages_prompts.PromptUpdateView.as_view(),
|
|
|
|
name="stage-prompt-update",
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"stages/prompts/<uuid:pk>/delete/",
|
|
|
|
stages_prompts.PromptDeleteView.as_view(),
|
|
|
|
name="stage-prompt-delete",
|
|
|
|
),
|
2020-05-20 07:17:06 +00:00
|
|
|
# Stage Invitations
|
2020-05-16 19:43:48 +00:00
|
|
|
path(
|
|
|
|
"stages/invitations/",
|
|
|
|
stages_invitations.InvitationListView.as_view(),
|
|
|
|
name="stage-invitations",
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"stages/invitations/create/",
|
|
|
|
stages_invitations.InvitationCreateView.as_view(),
|
|
|
|
name="stage-invitation-create",
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"stages/invitations/<uuid:pk>/delete/",
|
|
|
|
stages_invitations.InvitationDeleteView.as_view(),
|
|
|
|
name="stage-invitation-delete",
|
|
|
|
),
|
2020-05-08 16:45:53 +00:00
|
|
|
# Flows
|
|
|
|
path("flows/", flows.FlowListView.as_view(), name="flows"),
|
|
|
|
path(
|
2020-09-30 17:34:22 +00:00
|
|
|
"flows/create/",
|
|
|
|
flows.FlowCreateView.as_view(),
|
|
|
|
name="flow-create",
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"flows/import/",
|
|
|
|
flows.FlowImportView.as_view(),
|
|
|
|
name="flow-import",
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"flows/<uuid:pk>/update/",
|
|
|
|
flows.FlowUpdateView.as_view(),
|
|
|
|
name="flow-update",
|
2020-05-08 16:45:53 +00:00
|
|
|
),
|
2020-06-30 08:55:38 +00:00
|
|
|
path(
|
|
|
|
"flows/<uuid:pk>/execute/",
|
|
|
|
flows.FlowDebugExecuteView.as_view(),
|
|
|
|
name="flow-execute",
|
|
|
|
),
|
2020-08-28 13:06:25 +00:00
|
|
|
path(
|
2020-09-30 17:34:22 +00:00
|
|
|
"flows/<uuid:pk>/export/",
|
|
|
|
flows.FlowExportView.as_view(),
|
|
|
|
name="flow-export",
|
2020-08-28 13:06:25 +00:00
|
|
|
),
|
2020-05-08 16:45:53 +00:00
|
|
|
path(
|
2020-09-30 17:34:22 +00:00
|
|
|
"flows/<uuid:pk>/delete/",
|
|
|
|
flows.FlowDeleteView.as_view(),
|
|
|
|
name="flow-delete",
|
2020-05-08 16:45:53 +00:00
|
|
|
),
|
2020-05-08 17:46:39 +00:00
|
|
|
# Property Mappings
|
2019-12-31 11:51:16 +00:00
|
|
|
path(
|
|
|
|
"property-mappings/",
|
2020-11-04 12:01:38 +00:00
|
|
|
property_mappings.PropertyMappingListView.as_view(),
|
2019-12-31 11:51:16 +00:00
|
|
|
name="property-mappings",
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"property-mappings/create/",
|
2020-11-04 12:01:38 +00:00
|
|
|
property_mappings.PropertyMappingCreateView.as_view(),
|
2019-12-31 11:51:16 +00:00
|
|
|
name="property-mapping-create",
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"property-mappings/<uuid:pk>/update/",
|
2020-11-04 12:01:38 +00:00
|
|
|
property_mappings.PropertyMappingUpdateView.as_view(),
|
2019-12-31 11:51:16 +00:00
|
|
|
name="property-mapping-update",
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"property-mappings/<uuid:pk>/delete/",
|
2020-11-04 12:01:38 +00:00
|
|
|
property_mappings.PropertyMappingDeleteView.as_view(),
|
2019-12-31 11:51:16 +00:00
|
|
|
name="property-mapping-delete",
|
|
|
|
),
|
2018-12-14 13:24:04 +00:00
|
|
|
# Users
|
2019-12-31 11:51:16 +00:00
|
|
|
path("users/", users.UserListView.as_view(), name="users"),
|
|
|
|
path("users/create/", users.UserCreateView.as_view(), name="user-create"),
|
|
|
|
path("users/<int:pk>/update/", users.UserUpdateView.as_view(), name="user-update"),
|
|
|
|
path("users/<int:pk>/delete/", users.UserDeleteView.as_view(), name="user-delete"),
|
2020-10-11 19:54:00 +00:00
|
|
|
path(
|
|
|
|
"users/<int:pk>/disable/", users.UserDisableView.as_view(), name="user-disable"
|
|
|
|
),
|
|
|
|
path("users/<int:pk>/enable/", users.UserEnableView.as_view(), name="user-enable"),
|
2019-12-31 11:51:16 +00:00
|
|
|
path(
|
|
|
|
"users/<int:pk>/reset/",
|
|
|
|
users.UserPasswordResetView.as_view(),
|
|
|
|
name="user-password-reset",
|
|
|
|
),
|
2019-03-08 14:49:45 +00:00
|
|
|
# Groups
|
2020-08-16 15:41:48 +00:00
|
|
|
path("groups/", groups.GroupListView.as_view(), name="groups"),
|
2020-08-15 19:04:22 +00:00
|
|
|
path("groups/create/", groups.GroupCreateView.as_view(), name="group-create"),
|
2019-12-31 11:51:16 +00:00
|
|
|
path(
|
2020-08-15 19:04:22 +00:00
|
|
|
"groups/<uuid:pk>/update/",
|
|
|
|
groups.GroupUpdateView.as_view(),
|
|
|
|
name="group-update",
|
2019-12-31 11:51:16 +00:00
|
|
|
),
|
|
|
|
path(
|
2020-08-15 19:04:22 +00:00
|
|
|
"groups/<uuid:pk>/delete/",
|
|
|
|
groups.GroupDeleteView.as_view(),
|
|
|
|
name="group-delete",
|
2019-12-31 11:51:16 +00:00
|
|
|
),
|
2020-03-03 22:35:25 +00:00
|
|
|
# Certificate-Key Pairs
|
|
|
|
path(
|
|
|
|
"crypto/certificates/",
|
|
|
|
certificate_key_pair.CertificateKeyPairListView.as_view(),
|
|
|
|
name="certificate_key_pair",
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"crypto/certificates/create/",
|
|
|
|
certificate_key_pair.CertificateKeyPairCreateView.as_view(),
|
|
|
|
name="certificatekeypair-create",
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"crypto/certificates/<uuid:pk>/update/",
|
|
|
|
certificate_key_pair.CertificateKeyPairUpdateView.as_view(),
|
|
|
|
name="certificatekeypair-update",
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"crypto/certificates/<uuid:pk>/delete/",
|
|
|
|
certificate_key_pair.CertificateKeyPairDeleteView.as_view(),
|
|
|
|
name="certificatekeypair-delete",
|
|
|
|
),
|
2020-09-02 22:04:12 +00:00
|
|
|
# Outposts
|
|
|
|
path(
|
2020-09-30 17:34:22 +00:00
|
|
|
"outposts/",
|
|
|
|
outposts.OutpostListView.as_view(),
|
|
|
|
name="outposts",
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"outposts/create/",
|
|
|
|
outposts.OutpostCreateView.as_view(),
|
|
|
|
name="outpost-create",
|
2020-09-02 22:04:12 +00:00
|
|
|
),
|
|
|
|
path(
|
|
|
|
"outposts/<uuid:pk>/update/",
|
|
|
|
outposts.OutpostUpdateView.as_view(),
|
|
|
|
name="outpost-update",
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"outposts/<uuid:pk>/delete/",
|
|
|
|
outposts.OutpostDeleteView.as_view(),
|
|
|
|
name="outpost-delete",
|
|
|
|
),
|
2020-11-04 12:01:38 +00:00
|
|
|
# Outpost Service Connections
|
|
|
|
path(
|
|
|
|
"outposts/service_connections/",
|
|
|
|
outposts_service_connections.OutpostServiceConnectionListView.as_view(),
|
|
|
|
name="outpost-service-connections",
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"outposts/service_connections/create/",
|
|
|
|
outposts_service_connections.OutpostServiceConnectionCreateView.as_view(),
|
|
|
|
name="outpost-service-connection-create",
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"outposts/service_connections/<uuid:pk>/update/",
|
|
|
|
outposts_service_connections.OutpostServiceConnectionUpdateView.as_view(),
|
|
|
|
name="outpost-service-connection-update",
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"outposts/service_connections/<uuid:pk>/delete/",
|
|
|
|
outposts_service_connections.OutpostServiceConnectionDeleteView.as_view(),
|
|
|
|
name="outpost-service-connection-delete",
|
|
|
|
),
|
2020-10-16 09:28:54 +00:00
|
|
|
# Tasks
|
|
|
|
path(
|
|
|
|
"tasks/",
|
|
|
|
tasks.TaskListView.as_view(),
|
|
|
|
name="tasks",
|
|
|
|
),
|
2018-11-11 12:41:48 +00:00
|
|
|
]
|