secubox-openwrt/package/secubox/luci-app-system-hub/htdocs/luci-static/resources/view/system-hub/cdn-cache-link.js
CyberMind-FR 29d5174dcb fix: Correct CDN Cache redirect URL in system-hub link
Remove '/overview' from the redirect path to let the menu's
firstchild action handle the navigation properly.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-09 15:49:26 +01:00

13 lines
266 B
JavaScript

'use strict';
'require view';
return view.extend({
load: function() {
window.location.href = L.url('admin', 'secubox', 'network', 'cdn-cache');
return Promise.resolve();
},
render: function() {
return E('div', {}, _('Redirecting to CDN Cache...'));
}
});