cf5518c7ec
Closes the rule #8 gap at the API layer: PATCH endpoints + service updates for Tree (name/description/visibility), Source, Citation (page/detail/confidence), Relationship (qualifier/notes), and Media (title/attachment) — editor-gated and audited. Every core entity now has create/read/update/delete. Edit UIs for these land in the frontend batch. 37 tests pass. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Signed-off-by: Justin Paul <justin@jpaul.me>
30 lines
725 B
Python
30 lines
725 B
Python
import uuid
|
|
from datetime import datetime
|
|
|
|
from pydantic import BaseModel, ConfigDict
|
|
|
|
|
|
class MediaUpdate(BaseModel):
|
|
title: str | None = None
|
|
person_id: uuid.UUID | None = None
|
|
event_id: uuid.UUID | None = None
|
|
source_id: uuid.UUID | None = None
|
|
|
|
|
|
class MediaRead(BaseModel):
|
|
model_config = ConfigDict(from_attributes=True)
|
|
|
|
id: uuid.UUID
|
|
tree_id: uuid.UUID
|
|
original_filename: str
|
|
content_type: str
|
|
byte_size: int
|
|
checksum_sha256: str
|
|
title: str | None
|
|
person_id: uuid.UUID | None
|
|
event_id: uuid.UUID | None
|
|
source_id: uuid.UUID | None
|
|
created_at: datetime
|
|
# Presigned download URL, filled in by the router from the ObjectStore.
|
|
url: str | None = None
|