Migrations 047-051: - 047: Add is_shared to calendars - 048: Create calendar_members table (permissions, status, constraints) - 049: Create event_locks table (5min TTL, permanent owner locks) - 050: Expand notification CHECK (calendar_invite types) - 051: Add updated_by to calendar_events + updated_at index New models: CalendarMember, EventLock Updated models: Calendar (is_shared, members), CalendarEvent (updated_by), Notification (3 new types) New schemas: shared_calendar.py (invite, respond, member, lock, sync) Updated schemas: calendar.py (is_shared, sharing response fields) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
40 lines
1.0 KiB
Python
40 lines
1.0 KiB
Python
from pydantic import BaseModel, ConfigDict, Field
|
|
from datetime import datetime
|
|
from typing import Optional
|
|
|
|
|
|
class CalendarCreate(BaseModel):
|
|
model_config = ConfigDict(extra="forbid")
|
|
|
|
name: str = Field(min_length=1, max_length=100)
|
|
color: str = Field("#3b82f6", max_length=20)
|
|
is_shared: bool = False
|
|
|
|
|
|
class CalendarUpdate(BaseModel):
|
|
model_config = ConfigDict(extra="forbid")
|
|
|
|
name: Optional[str] = Field(None, min_length=1, max_length=100)
|
|
color: Optional[str] = Field(None, max_length=20)
|
|
is_visible: Optional[bool] = None
|
|
is_shared: Optional[bool] = None
|
|
|
|
|
|
class CalendarResponse(BaseModel):
|
|
id: int
|
|
name: str
|
|
color: str
|
|
is_default: bool
|
|
is_system: bool
|
|
is_visible: bool
|
|
created_at: datetime
|
|
updated_at: datetime
|
|
is_shared: bool = False
|
|
owner_umbral_name: Optional[str] = None
|
|
my_permission: Optional[str] = None
|
|
my_can_add_others: bool = False
|
|
my_local_color: Optional[str] = None
|
|
member_count: int = 0
|
|
|
|
model_config = ConfigDict(from_attributes=True)
|