From 5ff3ef7cbb9719d3476feb836cac86ee421f666d Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Thu, 19 Aug 2021 08:59:17 +0200 Subject: protocols: make APN option optional again Fixes: #5284 Fixes: 1661ac6bf8 ("luci-proto-ncm: add APN and PIN validation") Fixes: 114dc38dc2 ("luci-proto-qmi: add APN and PIN validation") Fixes: 6a8ad40b05 ("luci-proto-3g: add APN and PIN validation") Fixes: ebb676ef7b ("luci-proto-modemmanager: add APN and PIN validation") Signed-off-by: Jo-Philipp Wich --- .../htdocs/luci-static/resources/protocol/modemmanager.js | 3 +++ 1 file changed, 3 insertions(+) (limited to 'protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js') diff --git a/protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js b/protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js index 88e516a8ec..501f759646 100644 --- a/protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js +++ b/protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js @@ -93,6 +93,9 @@ return network.registerProtocol('modemmanager', { o = s.taboption('general', form.Value, 'apn', _('APN')); o.validate = function(section_id, value) { + if (value == null || value == '') + return true; + if (!/^[a-zA-Z0-9\-.]*[a-zA-Z0-9]$/.test(value)) return _('Invalid APN provided'); -- cgit v1.2.3