Full-stack mobile app for pole dance championship management. Backend: FastAPI + SQLAlchemy 2 (async) + SQLite (dev) / PostgreSQL (prod) - JWT auth with refresh token rotation - Championship CRUD with Instagram Graph API sync (APScheduler) - Registration flow with status management - Participant list publish with Expo push notifications - Alembic migrations, pytest test suite Mobile: React Native + Expo (TypeScript) - Auth gate: pending approval screen for new members - Championships list & detail screens - Registration form with status tracking - React Query + Zustand + React Navigation v6 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
30 lines
635 B
Python
30 lines
635 B
Python
import uuid
|
|
from datetime import datetime
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class RegistrationCreate(BaseModel):
|
|
championship_id: uuid.UUID
|
|
category: str | None = None
|
|
level: str | None = None
|
|
notes: str | None = None
|
|
|
|
|
|
class RegistrationStatusUpdate(BaseModel):
|
|
status: str # 'accepted' | 'rejected' | 'waitlisted'
|
|
|
|
|
|
class RegistrationOut(BaseModel):
|
|
id: uuid.UUID
|
|
championship_id: uuid.UUID
|
|
user_id: uuid.UUID
|
|
category: str | None
|
|
level: str | None
|
|
notes: str | None
|
|
status: str
|
|
submitted_at: datetime
|
|
decided_at: datetime | None
|
|
|
|
model_config = {"from_attributes": True}
|