diff options
author | Sawyer Bergeron <sbergeron@iol.unh.edu> | 2021-10-15 14:14:46 -0400 |
---|---|---|
committer | Sawyer Bergeron <sbergeron@iol.unh.edu> | 2021-10-15 14:20:02 -0400 |
commit | 35b9f39178cc502a5283a1b37a65f7dd0838ae05 (patch) | |
tree | 676ede483e2aa6a0ad8ebaef0c0300a155a22023 /src/notifier | |
parent | b3ed8ebcf536c021330e7ccbc0376f6b89189348 (diff) |
Merge User Booking API Rev 1 (Try 3)
Signed-off-by: Sawyer Bergeron <sbergeron@iol.unh.edu>
Change-Id: Ie1eee0a59929f8da39f16bb6bc17ae3de4f1cba9
Signed-off-by: Sawyer Bergeron <sbergeron@iol.unh.edu>
Diffstat (limited to 'src/notifier')
-rw-r--r-- | src/notifier/urls.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/notifier/urls.py b/src/notifier/urls.py index fedb9e8..923cc33 100644 --- a/src/notifier/urls.py +++ b/src/notifier/urls.py @@ -12,7 +12,7 @@ from django.conf.urls import url from notifier.views import InboxView, NotificationView -app_name = "notifier" +app_name = 'notifier' urlpatterns = [ url(r'^$', InboxView, name='messages'), url(r'^notification/(?P<notification_id>[0-9]+)/$', NotificationView, name='notifier_single') |