This commit is contained in:
pablodanswer 2025-02-02 18:44:39 -08:00 committed by Evan Lohn
parent 87a53d6d80
commit b1e9e03aa4

View File

@ -36,8 +36,6 @@ basic_router = APIRouter(prefix="/settings")
def put_settings(
settings: Settings, _: User | None = Depends(current_admin_user)
) -> None:
print("PUTTING SETTINGS")
print(settings)
store_settings(settings)
@ -49,10 +47,7 @@ def fetch_settings(
) -> UserSettings:
"""Settings and notifications are stuffed into this single endpoint to reduce number of
Postgres calls"""
print("FETCHING SETTINGS")
general_settings = load_settings()
print("LOADED SETTINGS")
print(general_settings)
settings_notifications = get_settings_notifications(user, db_session)
try: