- Add BoardCategory and BoardPost models with multi-language support - Add bulletin API endpoints (CRUD, notice toggle, pin toggle) - Add board_enabled setting to control menu visibility - Create frontend board pages (list, detail, write, edit) - Create admin board management and category management pages - Update Header.tsx with conditional Board menu between Inquiry and Contact Us - Update admin settings with board_enabled toggle - Add Board menu to admin sidebar Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
70 lines
2.1 KiB
Python
70 lines
2.1 KiB
Python
from .car import CarMaker, CarModel, Car, CarImage, CarOption
|
|
from .user import User, CarView, PerformanceCheckView, ChargeHistory, VerificationCode
|
|
from .inquiry import Inquiry, InquiryMessage, InquiryStatus, InquiryCategory
|
|
from .hero_banner import HeroBanner, HeroBannerSettings
|
|
from .translation import Translation
|
|
from .cache import CarCache, CarDetailCache, CacheRequestQueue
|
|
from .settings import SystemSettings
|
|
from .vehicle_request import VehicleRequest, RequestVehicle, PurchasedVehicle
|
|
from .dealer import DealerApplication, DealerInfo
|
|
from .vehicle_share import VehicleShare, ShareReward
|
|
from .withdrawal import WithdrawalRequest
|
|
from .referral import ReferralReward
|
|
from .notification import Notification
|
|
from .sns_share import SnsShareSubmission
|
|
from .push_subscription import PushSubscription, UserNotificationPreference
|
|
from .performance_check import CarPerformanceCheck
|
|
from .car_specification import CarSpecification
|
|
from .exchange_rate import ExchangeRate, ExchangeRateHistory
|
|
from .cc_package import CCPackage, DEFAULT_CC_PACKAGES
|
|
from .visitor import VisitorLog, VisitorDailyStats, VisitorSession
|
|
from .bulletin import BoardCategory, BoardPost
|
|
|
|
__all__ = [
|
|
"CarMaker",
|
|
"CarModel",
|
|
"Car",
|
|
"CarImage",
|
|
"CarOption",
|
|
"CarPerformanceCheck",
|
|
"CarSpecification",
|
|
"User",
|
|
"CarView",
|
|
"PerformanceCheckView",
|
|
"ChargeHistory",
|
|
"VerificationCode",
|
|
"Inquiry",
|
|
"InquiryMessage",
|
|
"InquiryStatus",
|
|
"InquiryCategory",
|
|
"HeroBanner",
|
|
"HeroBannerSettings",
|
|
"Translation",
|
|
"CarCache",
|
|
"CarDetailCache",
|
|
"CacheRequestQueue",
|
|
"SystemSettings",
|
|
"VehicleRequest",
|
|
"RequestVehicle",
|
|
"PurchasedVehicle",
|
|
"DealerApplication",
|
|
"DealerInfo",
|
|
"VehicleShare",
|
|
"ShareReward",
|
|
"WithdrawalRequest",
|
|
"ReferralReward",
|
|
"Notification",
|
|
"SnsShareSubmission",
|
|
"PushSubscription",
|
|
"UserNotificationPreference",
|
|
"ExchangeRate",
|
|
"ExchangeRateHistory",
|
|
"CCPackage",
|
|
"DEFAULT_CC_PACKAGES",
|
|
"VisitorLog",
|
|
"VisitorDailyStats",
|
|
"VisitorSession",
|
|
"BoardCategory",
|
|
"BoardPost",
|
|
]
|