From 8d97a07d57b8deed419579c7a9767feb59d1b4b3 Mon Sep 17 00:00:00 2001 From: Khai Tran Date: Thu, 1 Feb 2024 11:15:03 +0700 Subject: [PATCH] chore: Update urls --- locker_server/api/v1_0/urls.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/locker_server/api/v1_0/urls.py b/locker_server/api/v1_0/urls.py index 88d549a..1a23d46 100644 --- a/locker_server/api/v1_0/urls.py +++ b/locker_server/api/v1_0/urls.py @@ -85,6 +85,10 @@ url(r'^notification/settings$', views.NotificationSettingPwdViewSet.as_view({'get': 'list'})), url(r'^notification/settings/(?P[a-z_]+)$', views.NotificationSettingPwdViewSet.as_view({'put': 'update'})), + # TODO: Remove them later + url(r'^notifcation/settings$', views.NotificationSettingPwdViewSet.as_view({'get': 'list'})), + url(r'^notifcation/settings/(?P[a-z_]+)$', + views.NotificationSettingPwdViewSet.as_view({'put': 'update'})), ] # -------------------------------- Sync ----------------------------------- #