luci-app-radicale3: updates for Radicale 3.7.1

Radicale 3.7.1 made some breaking changes to the config, so
we need to update the UCI config to match.

Signed-off-by: Daniel F. Dickinson <dfdpublic@wildtechgarden.ca>
This commit is contained in:
Daniel F. Dickinson
2026-04-12 09:53:21 -04:00
committed by Hannu Nyman
parent 357f9fb1f9
commit 8d4ebf01e7
2 changed files with 5 additions and 5 deletions
+2
View File
@@ -10,6 +10,8 @@ PKG_LICENSE:=Apache-2.0
PKG_MAINTAINER:=Daniel F. Dickinson <dfdpublic@wildtechgarden.ca>
PROVIDES:=luci-app-radicale2
EXTRA_DEPENDS:=radicale3 (>= 3.7.1-1)
include ../../luci.mk
# call BuildPackage - OpenWrt buildroot signature
@@ -453,22 +453,20 @@ return view.extend({
o = s.taboption('main', form.ListValue, 'level', _('Log Level'));
s.rmempty = true;
o.value('', _('Default (info)'));
o.value('trace', _('Trace'));
o.value('debug', _('Debug'));
o.value('info', _('Info'));
o.value('notice', _('Notice'));
o.value('warning', _('Warning'));
o.value('error', _('Error'));
o.value('critical', _('Critical'));
o.value('alert', _('Alert'));
o.default = '';
// TODO: Add more logging options
s.tab('advanced', _('Advanced'));
o = s.taboption('advanced', form.Flag, 'trace_on_debug', _('Trace on debug'), _('Do not filter debug messages starting with \'TRACE\''));
o.rmempty = true;
o.default = o.disabled;
o.depends('level', 'debug');
o = s.taboption('advanced', form.Flag, 'mask_passwords', _('Mask Passwords'), _('Redact passwords in logs'));
o.rmempty = true;
o.default = o.enabled;