6 lines
172 B
Ruby
6 lines
172 B
Ruby
|
class TelegramBot < ApplicationRecord
|
||
|
belongs_to :account
|
||
|
has_one :inbox, as: :channel, dependent: :destroy
|
||
|
validates_uniqueness_of :auth_key, scope: :account_id
|
||
|
end
|