This repository has been archived on 2026-02-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
shared/models/__init__.py
giles 56e32585b7 feat: add PageConfig model and remove duplicate CartItem
Introduce page_configs table for per-page feature flags (calendar, market)
and future SumUp credentials. Add page_config relationship to Post model.
Remove duplicate CartItem definition from cart_item.py (canonical stays in market.py).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-10 14:19:25 +00:00

23 lines
564 B
Python

from .kv import KV
from .user import User
from .magic_link import MagicLink
from .market import ProductLike
from .ghost_content import Author, Tag, Post, PostAuthor, PostTag, PostLike
from .menu_item import MenuItem
from .ghost_membership_entities import (
GhostLabel, UserLabel,
GhostNewsletter, UserNewsletter,
GhostTier, GhostSubscription,
)
from .calendars import Calendar, CalendarEntry, Ticket
from .page_config import PageConfig
from .order import Order, OrderItem
from .snippet import Snippet
from .tag_group import TagGroup, TagGroupTag