Files
chatwoot/app/models/concerns/channelable.rb

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')