This repository has been archived on 2026-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
RepApp/repapp/one_time_login/urls.py

16 lines
301 B
Python
Raw Normal View History

2023-08-27 20:47:19 +00:00
"""
Urls of RepApp.
"""
from django.urls import path
from . import views
app_name = 'one_time_login'
urlpatterns = [
2023-08-29 11:08:35 +00:00
path("protected/", views.protected_test, name="protected"),
path("dummy/", views.dummy_content, name="dummy"),
path("<str:secret>/", views.login_view, name="login"),
2023-08-27 20:47:19 +00:00
]