Changeset View
Changeset View
Standalone View
Standalone View
users/urls.py
| Show All 10 Lines | urlpatterns = [ | ||||
| path('activity', Activity.as_view(), name='user-activity'), | path('activity', Activity.as_view(), name='user-activity'), | ||||
| path( | path( | ||||
| 'settings/', | 'settings/', | ||||
| include( | include( | ||||
| [ | [ | ||||
| path('profile', settings.ProfileView.as_view(), name='user-settings'), | path('profile', settings.ProfileView.as_view(), name='user-settings'), | ||||
| path('billing', settings.BillingView.as_view(), name='user-settings-billing'), | path('billing', settings.BillingView.as_view(), name='user-settings-billing'), | ||||
| path('emails', settings.EmailsView.as_view(), name='user-settings-emails'), | path('emails', settings.EmailsView.as_view(), name='user-settings-emails'), | ||||
| path('delete', settings.DeleteView.as_view(), name='user-settings-delete'), | |||||
| ] | ] | ||||
| ), | ), | ||||
| ), | ), | ||||
| path( | path( | ||||
| 'api/notifications/', | 'api/notifications/', | ||||
| include( | include( | ||||
| [ | [ | ||||
| path( | path( | ||||
| Show All 13 Lines | |||||