chatwoot-develop/app/models/captain_tool_config.rb

8 lines
200 B
Ruby

class CaptainToolConfig < ApplicationRecord
belongs_to :account
belongs_to :inbox
validates :tool_key, presence: true
validates :tool_key, uniqueness: { scope: [:account_id, :inbox_id] }
end