secubox-openwrt/package/secubox/luci-app-streamlit/root/usr/share/rpcd/acl.d/luci-app-streamlit.json
CyberMind-FR c1734c8ea0 fix(streamlit): Fix LuCI instance management bugs
- Add ACL permissions for instance RPC methods
- Fix settings page select styling (use st-form-input class)
- Fix memory limit options to match actual config values (1024M)
- Fix app selector dropdown in instances view (proper array handling)
- Bump luci-app-streamlit to r5

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

27 lines
625 B
JSON

{
"luci-app-streamlit": {
"description": "Grant access to Streamlit Platform management",
"read": {
"ubus": {
"luci.streamlit": [
"get_status", "get_config", "get_logs",
"list_apps", "get_app", "get_install_progress",
"list_instances"
]
},
"uci": ["streamlit"]
},
"write": {
"ubus": {
"luci.streamlit": [
"save_config", "start", "stop", "restart",
"install", "uninstall", "update",
"add_app", "remove_app", "set_active_app", "upload_app",
"add_instance", "remove_instance", "enable_instance", "disable_instance"
]
},
"uci": ["streamlit"]
}
}
}