mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 06:14:59 +00:00
- Updated action names from "moderate", "write", "configure", and "ban" to "manage", "update", and "execute" across multiple roles in the forum_forge, github_tools, irc_webchat, json_script_example, lua_test, media_center, nav_menu, package_validator, quick_guide, role_editor, schema_editor, screenshot_analyzer, smtp_config, social_hub, stats_grid, stream_cast, ui_auth, ui_footer, ui_header, ui_home, ui_intro, ui_level2, ui_level3, ui_level4, ui_level5, ui_level6, ui_login, ui_pages, and ui_permissions packages. - Changed resource types from "content", "data", "ui", "config", and "external" to "custom", "entity", and "component" for better clarity and consistency. - Adjusted actions in roles to reflect new naming conventions and improve readability.
54 lines
1.3 KiB
JSON
54 lines
1.3 KiB
JSON
{
|
|
"$schema": "https://metabuilder.dev/schemas/permissions.schema.json",
|
|
"schemaVersion": "1.0.0",
|
|
"package": "ui_header",
|
|
"description": "Header access permissions",
|
|
"permissions": [
|
|
{
|
|
"id": "header.view",
|
|
"name": "View Header",
|
|
"description": "View application header",
|
|
"resource": "header",
|
|
"action": "read",
|
|
"scope": "global",
|
|
"minLevel": 1
|
|
},
|
|
{
|
|
"id": "header.user.menu",
|
|
"name": "Access User Menu",
|
|
"description": "Access user dropdown menu in header",
|
|
"resource": "header",
|
|
"action": "execute",
|
|
"scope": "global",
|
|
"minLevel": 2
|
|
},
|
|
{
|
|
"id": "header.admin.access",
|
|
"name": "Access Admin Link",
|
|
"description": "See and access admin link in header navigation",
|
|
"resource": "header",
|
|
"action": "admin",
|
|
"scope": "global",
|
|
"minLevel": 3
|
|
},
|
|
{
|
|
"id": "header.theme.toggle",
|
|
"name": "Toggle Theme",
|
|
"description": "Toggle light/dark theme from header",
|
|
"resource": "header",
|
|
"action": "manage",
|
|
"scope": "global",
|
|
"minLevel": 1
|
|
}
|
|
],
|
|
"resources": [
|
|
{
|
|
"id": "header",
|
|
"name": "Header",
|
|
"type": "component",
|
|
"description": "Application header resources",
|
|
"actions": ["read", "execute", "admin", "manage"]
|
|
}
|
|
]
|
|
}
|