FossilRepo
| c588255… | ragelink | 1 | from django.urls import path |
| c588255… | ragelink | 2 | |
| c588255… | ragelink | 3 | from . import views |
| c588255… | ragelink | 4 | |
| c588255… | ragelink | 5 | app_name = "accounts" |
| c588255… | ragelink | 6 | |
| c588255… | ragelink | 7 | urlpatterns = [ |
| c588255… | ragelink | 8 | path("login/", views.login_view, name="login"), |
| c588255… | ragelink | 9 | path("logout/", views.logout_view, name="logout"), |
| c588255… | ragelink | 10 | path("ssh-keys/", views.ssh_keys, name="ssh_keys"), |
| c588255… | ragelink | 11 | path("ssh-keys/<int:pk>/delete/", views.ssh_key_delete, name="ssh_key_delete"), |
| c588255… | ragelink | 12 | path("notifications/", views.notification_preferences, name="notification_prefs"), |
| c588255… | ragelink | 13 | # Unified profile |
| c588255… | ragelink | 14 | path("profile/", views.profile, name="profile"), |
| c588255… | ragelink | 15 | path("profile/edit/", views.profile_edit, name="profile_edit"), |
| c588255… | ragelink | 16 | path("profile/tokens/create/", views.profile_token_create, name="profile_token_create"), |
| c588255… | ragelink | 17 | path("profile/tokens/<str:guid>/revoke/", views.profile_token_revoke, name="profile_token_revoke"), |
| c588255… | ragelink | 18 | ] |