summaryrefslogtreecommitdiff
path: root/app/models/gateway_setting.rb
blob: bc676a435a6dfd9bce00235608ea87d358b51cc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class GatewaySetting < ActiveRecord::Base
  attr_accessible :gateway_id, :name, :value, :class_type, :description

  belongs_to :gateway

  validates :name,
            :presence => true,
            :uniqueness => true

  validates :class_type,
            :presence => true,
            :inclusion => { :in => ['String', 'Integer', 'Boolean'] }
end