Clear cache when no transactions active

This commit is contained in:
Pete Richards
2016-11-08 13:50:13 -08:00
parent 42c48cb93b
commit f991dcfb76
3 changed files with 21 additions and 4 deletions

View File

@ -77,5 +77,9 @@ define([], function () {
return this.cache;
};
ModelCacheService.prototype.flush = function () {
this.cache = {};
};
return ModelCacheService;
});