Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
zipperman1 committed Nov 8, 2024
1 parent f8e4ab8 commit cb4ff99
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rating_api/routes/comment.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ async def get_comments(
`order_by` - возможное значение `'create_ts'` - возвращается список комментариев отсортированных по времени создания
`lecturer_id` - вернет все комментарии для преподавателя с конкретным id, по дефолту возвращает вообще все аппрувнутые комментарии.
`user_id` - вернет все комментарии пользователя с конкретным id
`unreviewed` - вернет все непроверенные комментарии, если True. По дефолту False.
Expand All @@ -92,10 +92,10 @@ async def get_comments(
result.comments = comments
if lecturer_id:
result.comments = [comment for comment in result.comments if comment.lecturer_id == lecturer_id]

if user_id:
result.comments = [comment for comment in result.comments if comment.user_id == user_id]

if unreviewed:
if not user:
raise ForbiddenAction(Comment)
Expand Down

0 comments on commit cb4ff99

Please sign in to comment.