mirror of
https://github.com/nasa/openmct.git
synced 2025-01-20 11:38:56 +00:00
62962e119e
Decorate telemetry service instead of capability service to enforce time conductor bounds. WTD-1515.
26 lines
692 B
JSON
26 lines
692 B
JSON
{
|
|
"extensions": {
|
|
"representers": [
|
|
{
|
|
"implementation": "ConductorRepresenter.js",
|
|
"depends": [ "conductorService", "$compile", "views[]" ]
|
|
}
|
|
],
|
|
"components": [
|
|
{
|
|
"type": "decorator",
|
|
"provides": "telemetryService",
|
|
"implementation": "ConductorTelemetryDecorator.js",
|
|
"depends": [ "conductorService" ]
|
|
}
|
|
],
|
|
"services": [
|
|
{
|
|
"key": "conductorService",
|
|
"implementation": "ConductorService.js",
|
|
"depends": [ "now" ]
|
|
}
|
|
]
|
|
}
|
|
}
|