plugins: add config schema needed by frontend plugins

This commit is contained in:
Patrik Oldsberg
2020-11-15 21:30:49 +01:00
parent f6ed7d5d0d
commit feb9905a37
8 changed files with 145 additions and 41 deletions
+17 -1
View File
@@ -52,5 +52,21 @@
},
"files": [
"dist"
]
],
"configSchema": {
"$schema": "https://backstage.io/schema/config-v1",
"title": "@backstage/rollbar",
"type": "object",
"properties": {
"rollbar": {
"type": "object",
"properties": {
"organization": {
"type": "string",
"visibility": "frontend"
}
}
}
}
}
}