-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodule.json
More file actions
23 lines (23 loc) · 863 Bytes
/
module.json
File metadata and controls
23 lines (23 loc) · 863 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"$schema": "https://raw.githubusercontent.com/corabank/platform-backoffice-shell/main/packages/shell-contract/module.schema.json",
"id": "my-module",
"name": "My Module",
"description": "Module description",
"version": "0.1.0",
"group": "operations",
"order": 20,
"accent": "coral",
"icon": "shield",
"permissions": ["my-module:read", "my-module:write"],
"navigation": [
{ "label": "Overview", "path": "/my-module", "requiredPermission": "my-module:read" },
{ "label": "Items", "path": "/my-module/items", "requiredPermission": "my-module:read" },
{ "label": "Settings", "path": "/my-module/settings", "requiredPermission": "my-module:write" }
],
"hasBackend": true,
"healthCheck": "/health",
"platform": {
"shellApiUrl": "https://backoffice.stage.cora.team",
"repo": "corabank/platform-module-my-module"
}
}