
* upgrade to latest ruff * try to fix dep review * try to fix dep review (2) * upgrade black * upgrade black (2) * update allowed dependencies * update allowed dependencies (2) * update allowed dependencies (3) * wait between interim and final in yield test * remove previous commit, increase delay between yield * forgot to save on the time.sleep(1) removal * fix integration (maybe?) * fix pyi? * what even is going on * what is realityi? * test another fix for app harness * try to wait even longer? * force uvloop to be optional * downpin fastapi < 0.111, remove changes to test
16 lines
374 B
Python
16 lines
374 B
Python
"""The Reflex Admin Dashboard."""
|
|
|
|
from dataclasses import dataclass, field
|
|
from typing import Optional
|
|
|
|
from starlette_admin.base import BaseAdmin as Admin
|
|
|
|
|
|
@dataclass
|
|
class AdminDash:
|
|
"""Data used to build the admin dashboard."""
|
|
|
|
models: list = field(default_factory=list)
|
|
view_overrides: dict = field(default_factory=dict)
|
|
admin: Optional[Admin] = None
|