Merge branch 'master' into iso-date-format

Merg'n master
This commit is contained in:
Jamie Vigliotta
2020-08-11 13:07:10 -07:00
315 changed files with 2235 additions and 2122 deletions

View File

@ -93,14 +93,14 @@ define([
NotificationIndicator,
NewFolderAction
) {
var bundleMap = {
const bundleMap = {
LocalStorage: 'platform/persistence/local',
MyItems: 'platform/features/my-items',
CouchDB: 'platform/persistence/couch',
Elasticsearch: 'platform/persistence/elastic'
};
var plugins = _.mapValues(bundleMap, function (bundleName, pluginName) {
const plugins = _.mapValues(bundleMap, function (bundleName, pluginName) {
return function pluginConstructor() {
return function (openmct) {
openmct.legacyRegistry.enable(bundleName);
@ -131,7 +131,7 @@ define([
plugins.CouchDB = function (url) {
return function (openmct) {
if (url) {
var bundleName = "config/couch";
const bundleName = "config/couch";
openmct.legacyRegistry.register(bundleName, {
"extensions": {
"constants": [
@ -153,7 +153,7 @@ define([
plugins.Elasticsearch = function (url) {
return function (openmct) {
if (url) {
var bundleName = "config/elastic";
const bundleName = "config/elastic";
openmct.legacyRegistry.register(bundleName, {
"extensions": {
"constants": [