diff options
Diffstat (limited to 'app/models/gateway_setting.rb')
-rw-r--r-- | app/models/gateway_setting.rb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/app/models/gateway_setting.rb b/app/models/gateway_setting.rb new file mode 100644 index 0000000..c01f0a8 --- /dev/null +++ b/app/models/gateway_setting.rb @@ -0,0 +1,31 @@ +class GatewaySetting < ActiveRecord::Base + CLASS_TYPES = ['String', 'Integer', 'Boolean'] + GATEWAY_SETTINGS = { + 'sip' => { + 'domain' => 'String', + 'username' => 'String', + 'password' => 'String', + 'contact' => 'String', + 'register' => 'Boolean', + 'auth_source' => 'String', + 'auth_pattern' => 'String', + 'number_source' => 'String', + }, + } + + attr_accessible :gateway_id, :name, :value, :class_type, :description + + belongs_to :gateway + + validates :name, + :presence => true, + :uniqueness => {:scope => :gateway_id} + + validates :class_type, + :presence => true, + :inclusion => { :in => CLASS_TYPES } + + def to_s + name + end +end |