Files
leadchat/app/models/concerns/channelable.rb
2023-07-21 12:08:19 +05:30

18 lines
384 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 messaging_window_enabled?
false
end
def create_audit_log_entry; end
end
Channelable.prepend_mod_with('Channelable')