diff options
author | spag <spag@golwen.net> | 2013-01-27 10:17:21 +0100 |
---|---|---|
committer | spag <spag@golwen.net> | 2013-01-27 10:17:21 +0100 |
commit | 45af07cb093eb0202967cf0d0fc058ca58f0b782 (patch) | |
tree | 703c3e8ec3dbe3d5e3dcefe8c7eda817e89f19ff /app/models | |
parent | e5fa1fc32609426693b43a4e8b6208867371d30e (diff) |
added gateway technology
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/gateway.rb | 2 | ||||
-rw-r--r-- | app/models/gateway_setting.rb | 10 |
2 files changed, 11 insertions, 1 deletions
diff --git a/app/models/gateway.rb b/app/models/gateway.rb index 3e791a6..a8df41f 100644 --- a/app/models/gateway.rb +++ b/app/models/gateway.rb @@ -1,5 +1,5 @@ class Gateway < ActiveRecord::Base - TECHNOLOGIES = ['sip'] + TECHNOLOGIES = ['sip', 'xmpp'] attr_accessible :name, :technology, :inbound, :outbound, :description diff --git a/app/models/gateway_setting.rb b/app/models/gateway_setting.rb index c01f0a8..e3eaadb 100644 --- a/app/models/gateway_setting.rb +++ b/app/models/gateway_setting.rb @@ -11,6 +11,16 @@ class GatewaySetting < ActiveRecord::Base 'auth_pattern' => 'String', 'number_source' => 'String', }, + 'xmpp' => { + 'server' => 'String', + 'login' => 'String', + 'password' => 'String', + 'inbound_number' => 'String', + 'auth_source' => 'String', + 'auth_pattern' => 'String', + 'number_source' => 'String', + 'destination_domain' => 'String', + }, } attr_accessible :gateway_id, :name, :value, :class_type, :description |