discourse/plugins/chat/lib/extensions/user_extension.rb
Roman Rizzi 0a5f548635
DEV: Move discourse-chat to the core repo. (#18776)
As part of this move, we are also renaming `discourse-chat` to `chat`.
2022-11-02 10:41:30 -03:00

12 lines
267 B
Ruby

# frozen_string_literal: true
module Chat::UserExtension
extend ActiveSupport::Concern
prepended do
has_many :user_chat_channel_memberships, dependent: :destroy
has_many :chat_message_reactions, dependent: :destroy
has_many :chat_mentions
end
end