mirror of
https://github.com/nasa/openmct.git
synced 2024-12-21 06:03:08 +00:00
9eeb68ddd0
Show user name and modification time in dialog when revision-checking detects modifications. WTD-1033.
42 lines
1.1 KiB
JSON
42 lines
1.1 KiB
JSON
{
|
|
"extensions": {
|
|
"components": [
|
|
{
|
|
"type": "decorator",
|
|
"provides": "capabilityService",
|
|
"implementation": "QueuingPersistenceCapabilityDecorator.js",
|
|
"depends": [ "persistenceQueue" ]
|
|
}
|
|
],
|
|
"services": [
|
|
{
|
|
"key": "persistenceQueue",
|
|
"implementation": "PersistenceQueue.js",
|
|
"depends": [
|
|
"$q",
|
|
"$timeout",
|
|
"dialogService",
|
|
"PERSISTENCE_QUEUE_DELAY"
|
|
]
|
|
}
|
|
],
|
|
"constants": [
|
|
{
|
|
"key": "PERSISTENCE_QUEUE_DELAY",
|
|
"value": 5
|
|
}
|
|
],
|
|
"templates": [
|
|
{
|
|
"key": "persistence-failure-dialog",
|
|
"templateUrl": "templates/persistence-failure-dialog.html"
|
|
}
|
|
],
|
|
"controllers": [
|
|
{
|
|
"key": "PersistenceFailureController",
|
|
"implementation": "PersistenceFailureController.js"
|
|
}
|
|
]
|
|
}
|
|
} |