- Event polling (5s refetchInterval) so collaborators see changes without refresh - Lock status polling in EventDetailPanel view mode — proactive lock banner - Per-event editable flag blocks drag on read-only shared events - Read-only permission guard in handleEventDrop/handleEventResize - M-01 security fix: block non-owners from moving events off shared calendars (403) - Fix invite response type (backend returns list, not wrapper object) - Remove is_shared from CalendarCreate/CalendarUpdate input schemas - New PermissionToggle segmented control (Eye/Pencil/Shield icons) - CalendarMemberRow restructured into spacious two-line card layout - CalendarForm dialog widened (sm:max-w-2xl), polished invite card with accent border - SharedCalendarSettings dialog widened (sm:max-w-lg) - CalendarMemberList max-height increased (max-h-48 → max-h-72) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
38 lines
991 B
Python
38 lines
991 B
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)
|
|
|
|
|
|
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
|
|
|
|
|
|
class CalendarResponse(BaseModel):
|
|
id: int
|
|
name: str
|
|
color: str
|
|
is_default: bool
|
|
is_system: bool
|
|
is_visible: bool
|
|
is_shared: bool = False
|
|
created_at: datetime
|
|
updated_at: datetime
|
|
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)
|