secubox-openwrt/package/secubox/luci-app-ai-gateway/root/usr/share/rpcd/acl.d/luci-app-ai-gateway.json
CyberMind-FR 59dbd714a5 fix(tools): Add curl redirect handling to image builder scripts
Validated secubox-image.sh and secubox-sysupgrade.sh scripts:
- Fixed curl redirect issue: ASU API returns 301 redirects
- Added -L flag to 9 curl calls across both scripts
- Verified all device profiles valid (mochabin, espressobin, x86-64)
- Confirmed POSIX sh compatibility for sysupgrade script
- Validated first-boot script syntax

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-03-03 09:44:04 +01:00

29 lines
428 B
JSON

{
"luci-app-ai-gateway": {
"description": "Grant access to AI Gateway dashboard",
"read": {
"ubus": {
"luci.ai-gateway": [
"status",
"get_config",
"get_providers",
"get_audit_stats",
"classify"
]
}
},
"write": {
"ubus": {
"luci.ai-gateway": [
"set_provider",
"set_offline_mode",
"test_provider",
"start",
"stop",
"restart"
]
}
}
}
}