mirror of
https://github.com/nasa/openmct.git
synced 2024-12-22 14:32:22 +00:00
d8276c532b
Merge in latest from master into topic branch for nasa/openmctweb#115 Conflicts: platform/features/conductor/src/ConductorRepresenter.js platform/features/conductor/src/ConductorTelemetrySeries.js platform/features/conductor/src/TimeConductor.js platform/features/conductor/test/ConductorRepresenterSpec.js platform/features/conductor/test/ConductorTelemetrySeriesSpec.js
47 lines
1.3 KiB
JSON
47 lines
1.3 KiB
JSON
{
|
|
"extensions": {
|
|
"representers": [
|
|
{
|
|
"implementation": "ConductorRepresenter.js",
|
|
"depends": [
|
|
"throttle",
|
|
"conductorService",
|
|
"$compile",
|
|
"views[]"
|
|
]
|
|
}
|
|
],
|
|
"components": [
|
|
{
|
|
"type": "decorator",
|
|
"provides": "telemetryService",
|
|
"implementation": "ConductorTelemetryDecorator.js",
|
|
"depends": [ "conductorService" ]
|
|
}
|
|
],
|
|
"services": [
|
|
{
|
|
"key": "conductorService",
|
|
"implementation": "ConductorService.js",
|
|
"depends": [ "now", "TIME_CONDUCTOR_DOMAINS" ]
|
|
}
|
|
],
|
|
"templates": [
|
|
{
|
|
"key": "time-conductor",
|
|
"templateUrl": "templates/time-conductor.html"
|
|
}
|
|
],
|
|
"constants": [
|
|
{
|
|
"key": "TIME_CONDUCTOR_DOMAINS",
|
|
"value": [
|
|
{ "key": "time", "name": "Time" },
|
|
{ "key": "yesterday", "name": "Yesterday" }
|
|
],
|
|
"comment": "Placeholder; to be replaced by inspection of available domains."
|
|
}
|
|
]
|
|
}
|
|
}
|