6 lines
148 B
Ruby
6 lines
148 B
Ruby
# frozen_string_literal: true
|
|
|
|
class TelegramBot < ApplicationRecord
|
|
validates :secret, presence: true
|
|
validates :api_token, presence: true
|
|
end
|