luci-mod-system: Dropbear: remove custom flag values
authorSergey Ponomarev <stokito@gmail.com>
Sun, 26 May 2024 10:56:27 +0000 (13:56 +0300)
committerPaul Donald <newtwen+github@gmail.com>
Wed, 5 Jun 2024 22:09:03 +0000 (00:09 +0200)
Instead of saving 'on' or 'off' for flag values, use the default 1 and 0.
This makes code simpler.

Signed-off-by: Sergey Ponomarev <stokito@gmail.com>
modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js

index 45b9994cc6f35f952f09a333df8a78652803a78c..24ed804413ccebad223ff14f2147d138614c48bf 100644 (file)
@@ -15,7 +15,7 @@ return view.extend({
                s.addbtntitle = _('Add instance');
 
                o = s.option(form.Flag, 'enable', _('Enable Instance'), _('Enable <abbr title="Secure Shell">SSH</abbr> service instance'));
-               o.default  = o.enabled;
+               o.default = true;
 
                o = s.option(widgets.NetworkSelect, 'Interface', _('Interface'), _('Listen only on the given interface or, if unspecified, on all'));
                o.nocreate    = true;
@@ -25,20 +25,13 @@ return view.extend({
                o.placeholder = 22;
 
                o = s.option(form.Flag, 'PasswordAuth', _('Password authentication'), _('Allow <abbr title="Secure Shell">SSH</abbr> password authentication'));
-               o.enabled  = 'on';
-               o.disabled = 'off';
-               o.default  = o.enabled;
+               o.default = true;
                o.rmempty  = false;
 
                o = s.option(form.Flag, 'RootPasswordAuth', _('Allow root logins with password'), _('Allow the <em>root</em> user to log in with password'));
-               o.enabled  = 'on';
-               o.disabled = 'off';
-               o.default  = o.enabled;
+               o.default = true;
 
                o = s.option(form.Flag, 'GatewayPorts', _('Gateway Ports'), _('Allow remote hosts to connect to local SSH forwarded ports'));
-               o.enabled  = 'on';
-               o.disabled = 'off';
-               o.default  = o.disabled;
 
                return m.render();
        }