mirror of
https://github.com/nasa/openmct.git
synced 2025-06-18 07:08:12 +00:00
Couchdb object synchronization (#3674)
* Implements ObjectAPI changes to refresh objects when an update is received from the database. * Populates a virtual folder of plans from CouchDB * Fixes bug with supportsMutation API call parameters
This commit is contained in:
@ -63,7 +63,8 @@ define([
|
||||
'./timeline/plugin',
|
||||
'./viewDatumAction/plugin',
|
||||
'./interceptors/plugin',
|
||||
'./performanceIndicator/plugin'
|
||||
'./performanceIndicator/plugin',
|
||||
'./CouchDBSearchFolder/plugin'
|
||||
], function (
|
||||
_,
|
||||
UTCTimeSystem,
|
||||
@ -107,7 +108,8 @@ define([
|
||||
Timeline,
|
||||
ViewDatumAction,
|
||||
ObjectInterceptors,
|
||||
PerformanceIndicator
|
||||
PerformanceIndicator,
|
||||
CouchDBSearchFolder
|
||||
) {
|
||||
const bundleMap = {
|
||||
LocalStorage: 'platform/persistence/local',
|
||||
@ -206,6 +208,7 @@ define([
|
||||
plugins.ViewDatumAction = ViewDatumAction.default;
|
||||
plugins.ObjectInterceptors = ObjectInterceptors.default;
|
||||
plugins.PerformanceIndicator = PerformanceIndicator.default;
|
||||
plugins.CouchDBSearchFolder = CouchDBSearchFolder.default;
|
||||
|
||||
return plugins;
|
||||
});
|
||||
|
Reference in New Issue
Block a user