2021-09-10 20:01:17 +00:00
|
|
|
module Channelable
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
|
|
validates :account_id, presence: true
|
|
|
|
belongs_to :account
|
2021-11-18 05:02:29 +00:00
|
|
|
has_one :inbox, as: :channel, dependent: :destroy_async
|
2021-09-10 20:01:17 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def has_24_hour_messaging_window?
|
|
|
|
false
|
|
|
|
end
|
|
|
|
end
|