luci-mod-dashboard.json 764 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "luci-mod-dashboard-routes": {
  3. "description": "Grant access to the system route status",
  4. "read": {
  5. "ubus": {
  6. "file": [ "exec" ]
  7. }
  8. }
  9. },
  10. "luci-mod-dashboard-index": {
  11. "description": "Grant access to main status display",
  12. "read": {
  13. "file": {
  14. "/www/luci-static/resources/view/status/include": [ "list" ]
  15. },
  16. "ubus": {
  17. "file": [ "list", "read" ],
  18. "system": [ "board", "info" ]
  19. }
  20. }
  21. },
  22. "luci-mod-dashboard-index-dhcp": {
  23. "description": "Grant access to DHCP status display",
  24. "read": {
  25. "ubus": {
  26. "luci-rpc": [ "getDHCPLeases" ]
  27. }
  28. }
  29. },
  30. "luci-mod-dashboard-index-wifi": {
  31. "description": "Grant access to wireless status display",
  32. "read": {
  33. "ubus": {
  34. "iwinfo": [ "assoclist" ]
  35. }
  36. }
  37. }
  38. }