[Persistence] Expose aggregator

This commit is contained in:
Victor Woeltjen
2015-11-05 17:50:39 -08:00
parent 74aff1b407
commit 942fa46022
3 changed files with 13 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
{
"extensions": {
"components": [
{
"provides": "persistenceService",
"type": "aggregator",
"depends": [ "$q" ],
"implementation": "PersistenceAggregator.js"
}
]
}
}

View File

@@ -52,7 +52,6 @@ define(
});
}
this.$q = $q;
this.providerMapPromise = $q.all(providers.map(addToMap))
.then(function () { return providerMap; });
}