initialize generic rms-software repository
Add the reusable RMS core application (server, web UI, plugins, tests, tools) with generic defaults, GPL licensing, and maintainer context documentation so deployments can consume this repo as software source independent of station-specific overlays.
This commit is contained in:
69
plugins/rms.station.access.policy/manifest.json
Normal file
69
plugins/rms.station.access.policy/manifest.json
Normal file
@@ -0,0 +1,69 @@
|
||||
{
|
||||
"id": "rms.station.access.policy",
|
||||
"name": "Station Access Policy",
|
||||
"version": "1.0.0",
|
||||
"apiVersion": "1.0",
|
||||
"capabilities": [
|
||||
"station.access.policy.read",
|
||||
"admin.station.access.policy.write"
|
||||
],
|
||||
"settingsSchema": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"policyFilePath": { "type": "string" },
|
||||
"persistentFilePath": { "type": "string" }
|
||||
},
|
||||
"additionalProperties": false
|
||||
},
|
||||
"uiControls": [
|
||||
{
|
||||
"controlId": "station-access-policy",
|
||||
"controlType": "switch.group",
|
||||
"title": "Station Access Policy",
|
||||
"capability": "admin.station.access.policy.write",
|
||||
"actions": [
|
||||
{
|
||||
"name": "addPersistentUser",
|
||||
"inputSchema": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"email": { "type": "string" }
|
||||
},
|
||||
"required": ["email"],
|
||||
"additionalProperties": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "removePersistentUser",
|
||||
"inputSchema": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"email": { "type": "string" }
|
||||
},
|
||||
"required": ["email"],
|
||||
"additionalProperties": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "syncOwner",
|
||||
"inputSchema": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"ownerEmail": { "type": "string" }
|
||||
},
|
||||
"required": ["ownerEmail"],
|
||||
"additionalProperties": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "clearOwner",
|
||||
"inputSchema": {
|
||||
"type": "object",
|
||||
"properties": {},
|
||||
"additionalProperties": false
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user