11 lines
345 B
Ruby
11 lines
345 B
Ruby
# frozen_string_literal: true
|
|
|
|
class TelegramChat < ApplicationRecord
|
|
CHAT_TYPES = %w[private group supergroup channel].freeze
|
|
|
|
has_one :account_telegram_contact,
|
|
dependent: :restrict_with_exception
|
|
|
|
validates :remote_id, presence: true, uniqueness: true
|
|
validates :chat_type, presence: true, inclusion: { in: CHAT_TYPES }
|
|
end
|