Fix local login flow, add new auth epic
This commit is contained in:
@@ -37,7 +37,12 @@ class NuzlockeRun(Base):
|
||||
String(20), index=True
|
||||
) # active, completed, failed
|
||||
visibility: Mapped[RunVisibility] = mapped_column(
|
||||
Enum(RunVisibility, name="run_visibility", create_constraint=False),
|
||||
Enum(
|
||||
RunVisibility,
|
||||
name="run_visibility",
|
||||
create_constraint=False,
|
||||
values_callable=lambda e: [m.value for m in e],
|
||||
),
|
||||
default=RunVisibility.PUBLIC,
|
||||
server_default="public",
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user