4a3fe983fa
First step of the public-viewing feature (design: docs/design/tree-visibility.md). No non-member behavior change yet — this only widens the vocabulary and UI. - TreeVisibility gains `site_members` (any authenticated user of the instance), giving the four-level model: public / site_members / unlisted / private. - Alembic migration adds the enum value via an autocommit block (ALTER TYPE ADD VALUE can't run in a transaction on older Postgres); downgrade is a no-op since PG can't drop an enum value. - Regenerated openapi.json + frontend TS client. - Trees-list dropdown now offers Private / Public – Members / Unlisted / Public with an explanatory tooltip. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Signed-off-by: Justin Paul <justin@jpaul.me>
64 lines
1.6 KiB
Python
64 lines
1.6 KiB
Python
"""Closed-set enumerations that drive logic (authorization, privacy, traversal).
|
|
|
|
Open-ended, GEDCOM-extensible vocabularies (event type, name type, source type)
|
|
are stored as strings instead, so importing real-world files never fails on an
|
|
unknown tag.
|
|
"""
|
|
|
|
import enum
|
|
|
|
|
|
class TreeVisibility(enum.StrEnum):
|
|
public = "public" # anyone on the web (anonymous), listed + search-indexable
|
|
site_members = "site_members" # any authenticated user of this instance
|
|
unlisted = "unlisted" # anyone with the link (anonymous), not listed/indexed
|
|
private = "private" # members only (default)
|
|
|
|
|
|
class MembershipRole(enum.StrEnum):
|
|
owner = "owner"
|
|
editor = "editor"
|
|
viewer = "viewer"
|
|
|
|
|
|
class PersonPrivacy(enum.StrEnum):
|
|
"""Per-person override of the tree's visibility (PRD US-041)."""
|
|
|
|
inherit = "inherit"
|
|
private = "private"
|
|
public = "public"
|
|
|
|
|
|
class RelationshipType(enum.StrEnum):
|
|
parent_child = "parent_child"
|
|
partnership = "partnership"
|
|
sibling = "sibling"
|
|
|
|
|
|
class ParentChildQualifier(enum.StrEnum):
|
|
"""Qualifies a parent_child edge so adoption/donor/blended families are
|
|
first-class rather than edge cases (ARCHITECTURE §5)."""
|
|
|
|
biological = "biological"
|
|
adoptive = "adoptive"
|
|
step = "step"
|
|
foster = "foster"
|
|
donor = "donor"
|
|
guardian = "guardian"
|
|
|
|
|
|
class CitationConfidence(enum.StrEnum):
|
|
high = "high"
|
|
medium = "medium"
|
|
low = "low"
|
|
|
|
|
|
class AuditActorType(enum.StrEnum):
|
|
user = "user"
|
|
assistant = "assistant"
|
|
|
|
|
|
class TokenPurpose(enum.StrEnum):
|
|
email_verify = "email_verify"
|
|
password_reset = "password_reset"
|