From 406400a198a073c54a02eaf3583f26cdab6691bc Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Thu, 23 Oct 2008 15:42:12 +0000 Subject: * luci/app/asterisk: more work on cbi models --- applications/luci-asterisk/luasrc/model/cbi/asterisk-voice.lua | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'applications/luci-asterisk/luasrc/model/cbi/asterisk-voice.lua') diff --git a/applications/luci-asterisk/luasrc/model/cbi/asterisk-voice.lua b/applications/luci-asterisk/luasrc/model/cbi/asterisk-voice.lua index 117a11d55e..af0259549a 100644 --- a/applications/luci-asterisk/luasrc/model/cbi/asterisk-voice.lua +++ b/applications/luci-asterisk/luasrc/model/cbi/asterisk-voice.lua @@ -16,14 +16,12 @@ $Id$ cbimap = Map("asterisk", "asterisk", "") voicegeneral = cbimap:section(TypedSection, "voicegeneral", "Voicemail general options", "") -voicegeneral.anonymous = true -voicegeneral.addremove = true serveremail = voicegeneral:option(Value, "serveremail", "From Email address of server", "") -serveremail.rmempty = true voicemail = cbimap:section(TypedSection, "voicemail", "Voice Mail boxes", "") +voicemail.addremove = true attach = voicemail:option(Flag, "attach", "Email contains attachment", "") attach.rmempty = true @@ -37,8 +35,8 @@ name.rmempty = true password = voicemail:option(Value, "password", "Password", "") password.rmempty = true -zone = voicemail:option(Value, "zone", "", "") -zone.rmempty = true +zone = voicemail:option(ListValue, "zone", "Voice Zone", "") +cbimap.uci:foreach( "asterisk", "voicezone", function(s) zone:value(s['.name']) end ) voicezone = cbimap:section(TypedSection, "voicezone", "Voice Zone settings", "") -- cgit v1.2.3