mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 14:25:02 +00:00
45 lines
1.1 KiB
JSON
45 lines
1.1 KiB
JSON
{
|
|
"$schema": "https://metabuilder.dev/schemas/permissions.schema.json",
|
|
"schemaVersion": "1.0.0",
|
|
"package": "dashboard",
|
|
"description": "Dashboard access permissions",
|
|
"permissions": [
|
|
{
|
|
"id": "dashboard.view",
|
|
"name": "View Dashboard",
|
|
"description": "View dashboard",
|
|
"resource": "dashboard",
|
|
"action": "read",
|
|
"scope": "global",
|
|
"minLevel": 2
|
|
},
|
|
{
|
|
"id": "dashboard.widgets.configure",
|
|
"name": "Configure Dashboard Widgets",
|
|
"description": "Configure dashboard widgets",
|
|
"resource": "dashboard",
|
|
"action": "manage",
|
|
"scope": "global",
|
|
"minLevel": 3
|
|
},
|
|
{
|
|
"id": "dashboard.widgets.add",
|
|
"name": "Add Dashboard Widgets",
|
|
"description": "Add dashboard widgets",
|
|
"resource": "dashboard",
|
|
"action": "create",
|
|
"scope": "global",
|
|
"minLevel": 3
|
|
}
|
|
],
|
|
"resources": [
|
|
{
|
|
"id": "dashboard",
|
|
"name": "Dashboard",
|
|
"type": "component",
|
|
"description": "Dashboard resources",
|
|
"actions": ["read", "manage", "create"]
|
|
}
|
|
]
|
|
}
|