From: Jo-Philipp Wich Date: Sun, 11 Jan 2009 04:01:32 +0000 (+0000) Subject: applications/luci-asterisk: add some options to sip trunk configuration X-Git-Tag: 0.9.0~814 X-Git-Url: http://207.154.207.93/?a=commitdiff_plain;h=00636ae577d3d7e6a8c7b216ae46df499291eeb7;p=project%2Fluci.git applications/luci-asterisk: add some options to sip trunk configuration --- diff --git a/applications/luci-asterisk/luasrc/model/cbi/asterisk/trunk_sip.lua b/applications/luci-asterisk/luasrc/model/cbi/asterisk/trunk_sip.lua index 3d7e6dc0f..ca2947138 100644 --- a/applications/luci-asterisk/luasrc/model/cbi/asterisk/trunk_sip.lua +++ b/applications/luci-asterisk/luasrc/model/cbi/asterisk/trunk_sip.lua @@ -21,12 +21,32 @@ local ast = require("luci.asterisk") if arg[1] then cbimap = Map("asterisk", "Edit SIP Trunk") - peer = cbimap:section(NamedSection, arg[1], "Foo") + peer = cbimap:section(NamedSection, arg[1]) + peer.hidden = { + type = "peer" + } - name = peer:option(DummyValue, "username") + back = peer:option(DummyValue, "_overview", "Back to trunk overview") + back.value = "" + back.titleref = luci.dispatcher.build_url("admin", "asterisk", "trunks", "sip") - outproxy = peer:option(Value, "outboundproxy") - + sipdomain = peer:option(Value, "host", "SIP Domain") + sipport = peer:option(Value, "port", "SIP Port") + sipport.default = 5060 + + username = peer:option(Value, "username", "Authorization ID") + password = peer:option(Value, "secret", "Authorization Password") + password.password = true + + register = peer:option(ListValue, "register", "Register with peer") + register:value("yes", "on") + register:value("no", "off") + + regext = peer:option(Value, "registerextension", "Extension to register (optional)") + regext:depends({register="yes"}) + + didval = peer:option(ListValue, "_did", "Number of assigned DID numbers") + for i=1,24 do didval:value(i) end return cbimap