summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Kozak <spag@golwen.net>2013-12-10 11:16:06 +0000
committerPeter Kozak <spag@golwen.net>2013-12-10 11:16:06 +0000
commit8d2f3dc9e2ff04906a6870f3d710c316faefdf03 (patch)
treec4bd3b641539436a8d0ab7290761b2e359b665cb
parentb870b36071cce394e3c9ea996d2fc58e18e31f6b (diff)
Gigaset dialplan class
-rw-r--r--misc/freeswitch/scripts/phones/phone.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/misc/freeswitch/scripts/phones/phone.lua b/misc/freeswitch/scripts/phones/phone.lua
index 174503b..0f428ee 100644
--- a/misc/freeswitch/scripts/phones/phone.lua
+++ b/misc/freeswitch/scripts/phones/phone.lua
@@ -35,6 +35,9 @@ function Phone.list_by_sql(self, sql_query)
elseif phone.record.ieee_name == 'xiamen yealink network technology co.,ltd' then
require 'phones.yealink';
phone.model = phones.yealink.Yealink:new{ log = self.log };
+ elseif phone.record.ieee_name == 'gigaset communications gmbh' then
+ require 'phones.gigaset';
+ phone.model = phones.gigaset.Gigaset:new{ log = self.log };
end
table.insert(account_phones, phone);
end)