Bulletin list and detail working now. No link from main dashboard yet. New is failing.

This commit is contained in:
Michael Woods
2025-12-24 20:01:22 -05:00
parent 25345d8aff
commit f0f78af056
2 changed files with 6 additions and 3 deletions

View File

@@ -5,7 +5,6 @@ from fastapi.templating import Jinja2Templates
from pathlib import Path
from .routers import public, profile, messages, send
from packetserver.http.routers.bulletins import html_router
BASE_DIR = Path(__file__).parent.resolve()
@@ -45,4 +44,5 @@ app.include_router(messages.router)
app.include_router(send.router)
app.include_router(dashboard.router)
app.include_router(bulletins.router)
app.include_router(html_router)
app.include_router(bulletins.html_router)