This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
authentik/passbook/core/urls.py

37 lines
1.2 KiB
Python
Raw Normal View History

2018-11-11 12:41:48 +00:00
"""passbook URL Configuration"""
from django.urls import path
2018-11-11 12:41:48 +00:00
from passbook.core.views import authentication, overview, user
from passbook.flows.models import FlowDesignation
from passbook.flows.views import ToDefaultFlow
2018-11-11 12:41:48 +00:00
urlpatterns = [
# Authentication views
path(
"auth/login/",
ToDefaultFlow.as_view(designation=FlowDesignation.AUTHENTICATION),
name="auth-login",
),
2019-12-31 11:51:16 +00:00
path("auth/logout/", authentication.LogoutView.as_view(), name="auth-logout"),
path(
"auth/sign_up/",
ToDefaultFlow.as_view(designation=FlowDesignation.ENROLLMENT),
name="auth-sign-up",
2019-12-31 11:51:16 +00:00
),
path(
"auth/password/reset/<uuid:nonce_uuid>/",
2019-12-31 11:51:16 +00:00
authentication.PasswordResetView.as_view(),
name="auth-password-reset",
),
# User views
path("-/user/", user.UserSettingsView.as_view(), name="user-settings"),
path("-/user/delete/", user.UserDeleteView.as_view(), name="user-delete"),
2019-12-31 11:51:16 +00:00
path(
"-/user/change_password/",
2019-12-31 11:51:16 +00:00
user.UserChangePasswordView.as_view(),
name="user-change-password",
),
# Overview
2019-12-31 11:51:16 +00:00
path("", overview.OverviewView.as_view(), name="overview"),
2018-11-16 08:10:35 +00:00
]