mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-24 17:31:52 +00:00
* add missing plugin files, update readme * add missing providers * about and settings extensions * leave only about
46 lines
916 B
JSON
46 lines
916 B
JSON
{
|
|
"$schema": "../../../extension.schema.json",
|
|
"$id": "14157f82-6489-4187-9b68-1a5e38fadeca",
|
|
"$name": "About Plugin",
|
|
"$version": "0.0.1",
|
|
"$vendor": "Alfresco Software, Ltd.",
|
|
"$license": "LGPL-3.0",
|
|
|
|
"actions": [
|
|
{
|
|
"id": "app.actions.about",
|
|
"type": "NAVIGATE_URL",
|
|
"payload": "/about"
|
|
}
|
|
],
|
|
|
|
"routes": [
|
|
{
|
|
"id": "app.about",
|
|
"path": "about",
|
|
"layout": "app.layout.main",
|
|
"component": "app.about.component"
|
|
}
|
|
],
|
|
|
|
"features": {
|
|
"header": [
|
|
{
|
|
"id": "app.header.more",
|
|
"children": [
|
|
{
|
|
"id": "app.header.about",
|
|
"order": 100,
|
|
"title": "APP.BROWSE.ABOUT.TITLE",
|
|
"description": "APP.BROWSE.ABOUT.TITLE",
|
|
"icon": "info",
|
|
"actions": {
|
|
"click": "app.actions.about"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
}
|