Feat: [#84] 랜딩페이지 이메일 수집 및 정식런칭 이메일 발송 기능 구현

This commit is contained in:
sm4640
2025-07-28 15:22:15 +09:00
parent 90f1a3ffa1
commit 6e2a019d32
5 changed files with 70 additions and 3 deletions

View File

@@ -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)),
]