Phase 0+1 of ActivityPub integration: - 6 ORM models (ActorProfile, APActivity, APFollower, APInboxItem, APAnchor, IPFSPin) - FederationService protocol + SqlFederationService implementation + stub - 4 DTOs (ActorProfileDTO, APActivityDTO, APFollowerDTO, APAnchorDTO) - Registry slot for federation service - Alembic migration for federation tables - IPFS async client (httpx-based) - HTTP Signatures (RSA-2048 sign/verify) - login_url() now uses AUTH_APP env var for flexible auth routing Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
33 lines
1.0 KiB
Python
33 lines
1.0 KiB
Python
from .user import User
|
|
from .kv import KV
|
|
from .magic_link import MagicLink
|
|
from .menu_item import MenuItem
|
|
|
|
from .ghost_membership_entities import (
|
|
GhostLabel, UserLabel,
|
|
GhostNewsletter, UserNewsletter,
|
|
GhostTier, GhostSubscription,
|
|
)
|
|
from .domain_event import DomainEvent
|
|
|
|
from .ghost_content import Tag, Post, Author, PostAuthor, PostTag, PostLike
|
|
from .page_config import PageConfig
|
|
from .order import Order, OrderItem
|
|
from .market import (
|
|
Product, ProductLike, ProductImage, ProductSection,
|
|
NavTop, NavSub, Listing, ListingItem,
|
|
LinkError, LinkExternal, SubcategoryRedirect, ProductLog,
|
|
ProductLabel, ProductSticker, ProductAttribute, ProductNutrition, ProductAllergen,
|
|
CartItem,
|
|
)
|
|
from .market_place import MarketPlace
|
|
from .calendars import (
|
|
Calendar, CalendarEntry, CalendarSlot,
|
|
TicketType, Ticket, CalendarEntryPost,
|
|
)
|
|
from .container_relation import ContainerRelation
|
|
from .menu_node import MenuNode
|
|
from .federation import (
|
|
ActorProfile, APActivity, APFollower, APInboxItem, APAnchor, IPFSPin,
|
|
)
|