Chatwoot/app/models/channel/api.rb
Pranav Raj S 0f2d3418f9
fix: Add a check for 24 hour window before sending a message (#1084)
Co-authored-by: Sojan Jose <sojan@pepalo.com>
2020-07-25 22:54:45 +05:30

23 lines
526 B
Ruby

# == Schema Information
#
# Table name: channel_api
#
# id :bigint not null, primary key
# webhook_url :string not null
# created_at :datetime not null
# updated_at :datetime not null
# account_id :integer not null
#
class Channel::Api < ApplicationRecord
self.table_name = 'channel_api'
validates :account_id, presence: true
belongs_to :account
has_one :inbox, as: :channel, dependent: :destroy
def has_24_hour_messaging_window?
false
end
end