Skip to content

Commit

Permalink
отмечаем закрытые предупреждения в уведомлениях
Browse files Browse the repository at this point in the history
  • Loading branch information
maxcom committed Nov 5, 2024
1 parent 215c07d commit 2f0c3f9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/scala/ru/org/linux/user/UserEventDao.scala
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ object UserEventDao {
"""
|SELECT user_events.id, event_date, topics.title as subj, topics.id as msgid, comments.id AS cid,
| comments.userid AS cAuthor, topics.userid AS tAuthor, unread, groupid, comments.deleted, type,
| user_events.message as ev_msg, origin_user, comments.reactions as c_reactions, topics.reactions as t_reactions
| user_events.message as ev_msg, origin_user, comments.reactions as c_reactions, topics.reactions as t_reactions,
| false as closed_warning
|FROM user_events
| INNER JOIN topics ON (topics.id = message_id)
| LEFT JOIN comments ON (comments.id=comment_id)
Expand Down

0 comments on commit 2f0c3f9

Please sign in to comment.