1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/app/models/telegram_chat.rb

12 lines
345 B
Ruby
Raw Normal View History

2018-12-06 22:11:18 -05:00
# frozen_string_literal: true
class TelegramChat < ApplicationRecord
CHAT_TYPES = %w[private group supergroup channel].freeze
2018-12-11 19:15:40 -05:00
has_one :account_telegram_contact,
dependent: :restrict_with_exception
2018-12-06 22:11:18 -05:00
validates :remote_id, presence: true, uniqueness: true
validates :chat_type, presence: true, inclusion: { in: CHAT_TYPES }
end