mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-22 22:14:59 +00:00
14 lines
335 B
Ruby
14 lines
335 B
Ruby
module Channelable
|
|
extend ActiveSupport::Concern
|
|
included do
|
|
validates :account_id, presence: true
|
|
belongs_to :account
|
|
has_one :inbox, as: :channel, dependent: :destroy_async, touch: true
|
|
after_update :create_audit_log_entry
|
|
end
|
|
|
|
def create_audit_log_entry; end
|
|
end
|
|
|
|
Channelable.prepend_mod_with('Channelable')
|