✏️ Fix: [#41] notification 관련 코드 삭제

This commit is contained in:
sm4640
2025-05-02 22:14:50 +09:00
parent 7e31c79963
commit d086eb39b6
4 changed files with 1 additions and 34 deletions

View File

@@ -1,14 +1,10 @@
from django.urls import path, include
from django.urls import path
from .views import *
from rest_framework.routers import DefaultRouter
app_name = 'users'
router = DefaultRouter()
router.register(r'notifications', NotificationReadViewSet, basename='notification')
urlpatterns = [
path('refresh-token/', RefreshAPIView.as_view()),
path('join/', JoinAPIView.as_view()),
@@ -20,5 +16,4 @@ urlpatterns = [
path('mypage/profile/<str:nickname>/', MyPageProfileAPIView.as_view()),
path('mypage/works/<str:nickname>/', MyPageWorkListAPIView.as_view()),
path('mypage/my-info/', MyPageMemberInfoAPIView.as_view()),
path('', include(router.urls)),
]