Notifications: - New /notifications page accessible to all users (ntfy + RSS config) - ntfy now supports no-auth, Bearer token, and HTTP Basic auth (for ACL-protected self-hosted servers) - RSS enabled/disabled independently of ntfy; token auto-generated on first GET - Notification settings removed from admin-only Settings page; replaced with link card - Sidebar adds Notifications nav link for all users - notification_dispatcher.py: fan-out now marks RSS events dispatched independently Action history: - Migration 0012: deduplicates existing bill_actions rows and adds UNIQUE(bill_id, action_date, action_text) - congress_poller.py: replaces existence-check inserts with ON CONFLICT DO NOTHING (race-condition safe) - Added backfill_all_bill_actions task (no date filter) + admin endpoint POST /backfill-all-actions Authored-By: Jack Levy
31 lines
1.3 KiB
Python
31 lines
1.3 KiB
Python
from fastapi import FastAPI
|
|
from fastapi.middleware.cors import CORSMiddleware
|
|
|
|
from app.api import bills, members, follows, dashboard, search, settings, admin, health, auth, notifications
|
|
from app.config import settings as config
|
|
|
|
app = FastAPI(
|
|
title="PocketVeto",
|
|
description="Monitor US Congressional activity with AI-powered bill summaries.",
|
|
version="1.0.0",
|
|
)
|
|
|
|
app.add_middleware(
|
|
CORSMiddleware,
|
|
allow_origins=[o for o in [config.LOCAL_URL, config.PUBLIC_URL] if o],
|
|
allow_credentials=True,
|
|
allow_methods=["*"],
|
|
allow_headers=["*"],
|
|
)
|
|
|
|
app.include_router(auth.router, prefix="/api/auth", tags=["auth"])
|
|
app.include_router(bills.router, prefix="/api/bills", tags=["bills"])
|
|
app.include_router(members.router, prefix="/api/members", tags=["members"])
|
|
app.include_router(follows.router, prefix="/api/follows", tags=["follows"])
|
|
app.include_router(dashboard.router, prefix="/api/dashboard", tags=["dashboard"])
|
|
app.include_router(search.router, prefix="/api/search", tags=["search"])
|
|
app.include_router(settings.router, prefix="/api/settings", tags=["settings"])
|
|
app.include_router(admin.router, prefix="/api/admin", tags=["admin"])
|
|
app.include_router(health.router, prefix="/api/health", tags=["health"])
|
|
app.include_router(notifications.router, prefix="/api/notifications", tags=["notifications"])
|