fix: Correct RPC method name for listProfiles (v0.6.0-r17)

- 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 <noreply@anthropic.com>
This commit is contained in:
CyberMind-FR 2026-01-07 12:39:47 +01:00
parent 0577410c42
commit fe96791d20

View File

@ -176,7 +176,7 @@ var callApplyAppWizard = rpc.declare({
var callListProfiles = rpc.declare({
object: 'luci.secubox',
method: 'list_profiles',
method: 'listProfiles',
expect: { profiles: [] }
});