fix(cafe24): 앞 커밋에서 누락된 디자인파일 일반화 변경분 포함
config.py(Cafe24FtpConfig 일반화 + DESIGN_FILE_SPECS)·db.py(add/list_design_
revision)·router.py(design_files_router 연결)·_nav.html(탭 3개)·테스트·
.env.example·문서가 앞 커밋(8c2a9c4)에 함께 올라갔어야 하는데 스테이징 누락.
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
@@ -12,9 +12,9 @@
|
||||
routes_products 상품 목록/검색 · 상세설명 조회·편집·적용
|
||||
routes_schedules 예약 등록·목록·취소 (실행은 worker.py)
|
||||
routes_system 연결(OAuth)·상태·API 로그·작업 로그
|
||||
routes_swiper 모바일 스와이프(product-swiper.js) 편집 — 카페24 디자인
|
||||
보관함 FTP (Admin API 가 아니다. app/integrations/cafe24/
|
||||
design_ftp.py 참고)
|
||||
routes_design_files 모바일 스와이프·PC/모바일 상품상세 템플릿 편집 —
|
||||
카페24 디자인 보관함 FTP (Admin API 가 아니다.
|
||||
app/integrations/cafe24/design_ftp.py 참고)
|
||||
"""
|
||||
|
||||
from __future__ import annotations
|
||||
@@ -23,9 +23,9 @@ import logging
|
||||
|
||||
from fastapi import APIRouter
|
||||
|
||||
from .routes_design_files import design_files_router
|
||||
from .routes_products import products_router
|
||||
from .routes_schedules import schedules_router
|
||||
from .routes_swiper import swiper_router
|
||||
from .routes_system import system_router
|
||||
|
||||
logger = logging.getLogger("cafe24.router")
|
||||
@@ -34,7 +34,7 @@ router = APIRouter(prefix="/cafe24", tags=["cafe24"])
|
||||
|
||||
router.include_router(products_router)
|
||||
router.include_router(schedules_router)
|
||||
router.include_router(swiper_router)
|
||||
router.include_router(design_files_router)
|
||||
router.include_router(system_router)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user