diff --git a/locker_server/api/v1_0/urls.py b/locker_server/api/v1_0/urls.py index 86354da..7ed8fa1 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 ----------------------------------- #