[ACA-3775] add missing plugin configuration (#1820)

* add missing plugin files, update readme

* add missing providers

* about and settings extensions

* leave only about
This commit is contained in:
Denys Vuika
2020-11-24 12:29:56 +00:00
committed by GitHub
parent b504a224ea
commit aba16339dc
13 changed files with 156 additions and 48 deletions

View File

@@ -0,0 +1,45 @@
{
"$schema": "../../../extension.schema.json",
"$id": "b1eac381-0268-450f-b1dc-8f041fba575d",
"$name": "Settings Plugin",
"$version": "0.0.1",
"$vendor": "Alfresco Software, Ltd.",
"$license": "LGPL-3.0",
"actions": [
{
"id": "app.actions.settings",
"type": "NAVIGATE_URL",
"payload": "/settings"
}
],
"routes": [
{
"id": "app.settings",
"path": "settings",
"layout": "blank",
"component": "app.settings.component"
}
],
"features": {
"header": [
{
"id": "app.header.more",
"children": [
{
"id": "app.header.settings",
"order": 110,
"title": "APP.SETTINGS.TITLE",
"description": "APP.SETTINGS.TITLE",
"icon": "info",
"actions": {
"click": "app.actions.settings"
}
}
]
}
]
}
}