secubox-openwrt/package/secubox/luci-app-ndpid/root/usr/share/rpcd/acl.d/luci-app-ndpid.json
CyberMind-FR 50bd0c872e feat: Enhance monitoring page layout and fix nDPId detailed flows
Monitoring page:
- Move Current Statistics card above histogram charts
- Replace Network Throughput with System Load chart
- Fix API field mapping (usage_percent vs percent)
- Parse load from cpu.load string format

nDPId app:
- Add get_detailed_flows and get_categories RPCD methods
- Fix subshell variable scope bug in RPCD script
- Add interface scanning from /sys/class/net
- Update ACL permissions for new methods
- Enhance flows.js with Array.isArray data handling

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

37 lines
653 B
JSON

{
"luci-app-ndpid": {
"description": "Grant access to nDPId DPI dashboard",
"read": {
"ubus": {
"luci.ndpid": [
"get_service_status",
"get_realtime_flows",
"get_detailed_flows",
"get_interface_stats",
"get_top_applications",
"get_top_protocols",
"get_categories",
"get_config",
"get_dashboard",
"get_interfaces"
]
},
"uci": ["ndpid"]
},
"write": {
"ubus": {
"luci.ndpid": [
"service_start",
"service_stop",
"service_restart",
"service_enable",
"service_disable",
"update_config",
"clear_cache"
]
},
"uci": ["ndpid"]
}
}
}