mirror of
https://github.com/nasa/openmct.git
synced 2024-12-29 01:18:52 +00:00
6f3d6ec12f
Mark default as prevented and check for prevention of default when handling mctDrop events (which allow views to follow up on drop gestures by positioning objects within themselves) avoiding redundant drops into embedded views. WTD-1233.
47 lines
1.3 KiB
JSON
47 lines
1.3 KiB
JSON
{
|
|
"name": "Couch Persistence",
|
|
"description": "Adapter to read and write objects using a CouchDB instance.",
|
|
"extensions": {
|
|
"components": [
|
|
{
|
|
"provides": "persistenceService",
|
|
"type": "provider",
|
|
"implementation": "ElasticPersistenceProvider.js",
|
|
"depends": [ "$http", "$q", "PERSISTENCE_SPACE", "ELASTIC_ROOT", "ELASTIC_PATH" ]
|
|
}
|
|
],
|
|
"constants": [
|
|
{
|
|
"key": "PERSISTENCE_SPACE",
|
|
"value": "mct"
|
|
},
|
|
{
|
|
"key": "ELASTIC_ROOT",
|
|
"value": "http://localhost:9200",
|
|
"priority": "fallback"
|
|
},
|
|
{
|
|
"key": "ELASTIC_PATH",
|
|
"value": "mct/domain_object",
|
|
"priority": "fallback"
|
|
},
|
|
{
|
|
"key": "ELASTIC_INDICATOR_INTERVAL",
|
|
"value": 15000,
|
|
"priority": "fallback"
|
|
}
|
|
],
|
|
"indicators": [
|
|
{
|
|
"implementation": "ElasticIndicator.js",
|
|
"depends": [
|
|
"$http",
|
|
"$interval",
|
|
"ELASTIC_ROOT",
|
|
"ELASTIC_INDICATOR_INTERVAL"
|
|
]
|
|
}
|
|
]
|
|
}
|
|
}
|