From 86c322181ac1aeed7fa8dde7f7c03b570359917b Mon Sep 17 00:00:00 2001 From: spag Date: Sun, 13 Jan 2013 20:33:32 +0100 Subject: validations --- app/models/gateway_setting.rb | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'app/models/gateway_setting.rb') diff --git a/app/models/gateway_setting.rb b/app/models/gateway_setting.rb index c6c0b9a..bc676a4 100644 --- a/app/models/gateway_setting.rb +++ b/app/models/gateway_setting.rb @@ -2,4 +2,12 @@ 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 -- cgit v1.2.3