Updated ACL permissions for 4 modules to use correct ubus object names with the mandatory 'luci.' prefix: - luci-app-auth-guardian: auth-guardian → luci.auth-guardian - luci-app-netifyd-dashboard: netifyd → luci.netifyd-dashboard - luci-app-network-modes: network-modes → luci.network-modes - luci-app-wireguard-dashboard: wireguard-dashboard → luci.wireguard-dashboard Also updated method names and UCI config references to match current RPCD backend implementations. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
31 lines
805 B
JSON
31 lines
805 B
JSON
{
|
|
"luci-app-auth-guardian": {
|
|
"description": "Auth Guardian",
|
|
"read": {
|
|
"ubus": {
|
|
"luci.auth-guardian": [
|
|
"status",
|
|
"list_providers",
|
|
"list_vouchers",
|
|
"list_sessions",
|
|
"get_logs"
|
|
]
|
|
},
|
|
"uci": ["auth_guardian"]
|
|
},
|
|
"write": {
|
|
"ubus": {
|
|
"luci.auth-guardian": [
|
|
"set_provider",
|
|
"delete_provider",
|
|
"create_voucher",
|
|
"delete_voucher",
|
|
"validate_voucher",
|
|
"revoke_session"
|
|
]
|
|
},
|
|
"uci": ["auth_guardian"]
|
|
}
|
|
}
|
|
}
|