mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 15:08:56 +08:00
0a5f548635
As part of this move, we are also renaming `discourse-chat` to `chat`.
16 lines
485 B
Ruby
16 lines
485 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Chat::UserEmailExtension
|
|
def execute(args)
|
|
super(args)
|
|
|
|
if args[:type] == "chat_summary" && args[:memberships_to_update_data].present?
|
|
args[:memberships_to_update_data].to_a.each do |membership_id, max_unread_mention_id|
|
|
UserChatChannelMembership.find_by(user: args[:user_id], id: membership_id.to_i)&.update(
|
|
last_unread_mention_when_emailed_id: max_unread_mention_id.to_i,
|
|
)
|
|
end
|
|
end
|
|
end
|
|
end
|