From a61442c884677f8397889dd3f75f7691efcc2fe6 Mon Sep 17 00:00:00 2001 From: sm4640 Date: Wed, 25 Jun 2025 23:04:12 +0900 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=EF=B8=8F=20Fix:=20[#69]=20=EC=95=88?= =?UTF-8?q?=20=EC=9D=BD=EC=9D=80=20=EC=95=8C=EB=A6=BC=20=EC=B9=B4=EC=9A=B4?= =?UTF-8?q?=ED=8A=B8=20api=20url=EC=84=A4=EC=A0=95,=20=EC=95=8C=EB=A6=BC?= =?UTF-8?q?=20=EC=A1=B0=ED=9A=8C=20=EB=B7=B0=EC=85=8B=20=EA=B2=BD=EB=A1=9C?= =?UTF-8?q?=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- notifications/urls.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/notifications/urls.py b/notifications/urls.py index c2d898b..efe5c3a 100644 --- a/notifications/urls.py +++ b/notifications/urls.py @@ -7,8 +7,9 @@ from rest_framework.routers import DefaultRouter app_name = 'notifications' router = DefaultRouter() -router.register(r'', NotificationReadViewSet, basename='notification') +router.register(r'read', NotificationReadViewSet, basename='notification') urlpatterns = [ path('', include(router.urls)), + path('count/', NewNotificationCountAPIView().as_view()), ] \ No newline at end of file