From fe96791d202ec5b6249c5d6cffe693b7c9cb1d23 Mon Sep 17 00:00:00 2001 From: CyberMind-FR Date: Wed, 7 Jan 2026 12:39:47 +0100 Subject: [PATCH] fix: Correct RPC method name for listProfiles (v0.6.0-r17) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Changed method from 'list_profiles' to 'listProfiles' to match backend - Fixes wizard showing 'No profiles available' - Backend uses camelCase method names, not snake_case 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- luci-app-secubox/htdocs/luci-static/resources/secubox/api.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/luci-app-secubox/htdocs/luci-static/resources/secubox/api.js b/luci-app-secubox/htdocs/luci-static/resources/secubox/api.js index d1abc52c..700e7f2b 100644 --- a/luci-app-secubox/htdocs/luci-static/resources/secubox/api.js +++ b/luci-app-secubox/htdocs/luci-static/resources/secubox/api.js @@ -176,7 +176,7 @@ var callApplyAppWizard = rpc.declare({ var callListProfiles = rpc.declare({ object: 'luci.secubox', - method: 'list_profiles', + method: 'listProfiles', expect: { profiles: [] } });