imported routers to fastapi app routers

This commit is contained in:
2025-08-07 18:57:41 +03:00
parent 10310b9416
commit aeed5ea45c
3 changed files with 6 additions and 4 deletions
+1 -1
View File
@@ -117,7 +117,7 @@ async def add_swipe(
if value == 0 and group.allow_skips is False:
raise HTTPException(
status_code=status.HTTP_403_FORBIDDEN,
detail="Skips are disallowed",
detail="Skips are disallowed in the group",
)
result = db.create_swipe(conn, current_user.username, feed_id, picture_id, value)