Changeset View
Changeset View
Standalone View
Standalone View
profiles/urls.py
| from django.urls import path | from django.urls import path | ||||
| from profiles.views.webhooks import user_modified_webhook | from profiles.views.webhooks import user_modified_webhook | ||||
| from profiles.views.streams import notifications, activity | |||||
| urlpatterns = [ | urlpatterns = [ | ||||
| path('webhooks/user-modified', user_modified_webhook, name='webhook-user-modified'), | path('webhooks/user-modified', user_modified_webhook, name='webhook-user-modified'), | ||||
| path('notifications', notifications, name='profile-notifications'), | |||||
| path('activity', activity, name='profile-activity'), | |||||
| ] | ] | ||||