Adding bulletin support.

This commit is contained in:
Michael Woods
2025-12-21 22:44:08 -05:00
parent 7fb1a28506
commit 64b3d46586
2 changed files with 77 additions and 2 deletions

View File

@@ -4,7 +4,7 @@ from fastapi.staticfiles import StaticFiles
from fastapi.templating import Jinja2Templates
from pathlib import Path
from .routers import public, profile, messages, send # dashboard removed for now
from .routers import public, profile, messages, send, bulletins
BASE_DIR = Path(__file__).parent.resolve()
@@ -28,4 +28,5 @@ app.include_router(public.router)
app.include_router(profile.router)
app.include_router(messages.router)
app.include_router(send.router)
app.include_router(dashboard.router) # now works
app.include_router(dashboard.router)
app.include_router(bulletins.router)