Chatwoot/app/models/telegram_bot.rb

6 lines
172 B
Ruby
Raw Normal View History

class TelegramBot < ApplicationRecord
belongs_to :account
has_one :inbox, as: :channel, dependent: :destroy
validates_uniqueness_of :auth_key, scope: :account_id
end