mirror of
https://github.com/nasa/openmct.git
synced 2024-12-30 09:58:52 +00:00
3135580f3a
Add template to populate open source licenses page from extensions exposed by bundles; WTD-669.
48 lines
1.4 KiB
JSON
48 lines
1.4 KiB
JSON
{
|
|
"name": "About Open MCT Web",
|
|
"extensions": {
|
|
"templates": [
|
|
{
|
|
"key": "app-logo",
|
|
"priority": "optional",
|
|
"templateUrl": "templates/app-logo.html"
|
|
},
|
|
{
|
|
"key": "about-logo",
|
|
"priority": "preferred",
|
|
"templateUrl": "templates/about-logo.html"
|
|
},
|
|
{
|
|
"key": "about-dialog",
|
|
"templateUrl": "templates/about-dialog.html"
|
|
},
|
|
{
|
|
"key": "overlay-about",
|
|
"templateUrl": "templates/overlay-about.html"
|
|
}
|
|
],
|
|
"controllers": [
|
|
{
|
|
"key": "LogoController",
|
|
"depends": [ "overlayService" ],
|
|
"implementation": "LogoController.js"
|
|
},
|
|
{
|
|
"key": "AboutController",
|
|
"depends": [ "versions[]", "$window" ],
|
|
"implementation": "AboutController.js"
|
|
},
|
|
{
|
|
"key": "LicenseController",
|
|
"depends": [ "licenses[]" ],
|
|
"implementation": "LicenseController.js"
|
|
}
|
|
],
|
|
"routes": [
|
|
{
|
|
"when": "/licenses",
|
|
"templateUrl": "templates/licenses.html"
|
|
}
|
|
]
|
|
}
|
|
} |