✏️ Fix: [#41] notification 관련 코드 삭제
This commit is contained in:
@@ -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)),
|
||||
]
|
||||
Reference in New Issue
Block a user