Add page for user to view/clear preferences

This commit is contained in:
Jeremy Stretch
2020-04-24 10:29:06 -04:00
parent 7c8c85e435
commit 587339bea0
4 changed files with 56 additions and 11 deletions
+1
View File
@@ -6,6 +6,7 @@ app_name = 'user'
urlpatterns = [
path('profile/', views.ProfileView.as_view(), name='profile'),
path('preferences/', views.UserConfigView.as_view(), name='preferences'),
path('password/', views.ChangePasswordView.as_view(), name='change_password'),
path('api-tokens/', views.TokenListView.as_view(), name='token_list'),
path('api-tokens/add/', views.TokenEditView.as_view(), name='token_add'),