mirror of
https://github.com/nasa/openmct.git
synced 2025-01-02 19:36:41 +00:00
31 lines
835 B
JSON
31 lines
835 B
JSON
|
{
|
||
|
"extensions": {
|
||
|
"components": [
|
||
|
{
|
||
|
"type": "decorator",
|
||
|
"provides": "capabilityService",
|
||
|
"implementation": "QueuingPersistenceCapabilityDecorator.js",
|
||
|
"depends": [ "persistenceQueue" ]
|
||
|
}
|
||
|
],
|
||
|
"services": [
|
||
|
{
|
||
|
"key": "persistenceQueue",
|
||
|
"implementation": "PersistenceQueue.js",
|
||
|
"depends": [
|
||
|
"$q",
|
||
|
"$timeout",
|
||
|
"dialogService",
|
||
|
"persistenceService",
|
||
|
"PERSISTENCE_QUEUE_DELAY"
|
||
|
]
|
||
|
}
|
||
|
],
|
||
|
"constants": [
|
||
|
{
|
||
|
"key": "PERSISTENCE_QUEUE_DELAY",
|
||
|
"value": 5
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
}
|