✨ Feat: [#84] 랜딩페이지 이메일 수집 및 정식런칭 이메일 발송 기능 구현
This commit is contained in:
@@ -1,9 +1,15 @@
|
||||
from django.urls import include, path
|
||||
|
||||
from rest_framework.routers import DefaultRouter
|
||||
|
||||
from .views import *
|
||||
|
||||
preorder_router = DefaultRouter(trailing_slash=True)
|
||||
preorder_router.register(r"email", PreOrderedAPIViewSet, basename="preorder")
|
||||
|
||||
app_name = 'homes'
|
||||
|
||||
urlpatterns = [
|
||||
path('search/', SearchAPIView.as_view()),
|
||||
path("preorder/", include(preorder_router.urls)),
|
||||
]
|
||||
Reference in New Issue
Block a user