mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 17:15:32 +08:00
12 lines
267 B
Ruby
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
|