chatwoot-develop/enterprise/app/models/captain/configuration.rb
2026-01-12 19:04:15 -03:00

9 lines
171 B
Ruby

module Captain
class Configuration < ApplicationRecord
belongs_to :account
validates :account_id, presence: true
validates :title, presence: true
end
end