Functioncreate_notification_task(
self,
actor_id: int,
owner_id: int,
notif_type: str,
actor_username: str,
entity_id:
app/tasks/notification_tasks.py:6
Functionget_my_notifications(
limit: int = Query(20, ge=1, le=100),
offset: int = Query(0, ge=0),
db_session: AsyncSession = D
app/routes/notifications.py:23
Functionget_post_comments(post_id:int, limit:int=Query(10, ge=1, le=100), offset: int = Query(0, ge=0),
db:AsyncSession=Depends(db.
app/routes/comment.py:110