my-test123
Version:
A planner front-end for Fabric8.
19 lines • 907 B
JavaScript
import { BehaviorSubject } from 'rxjs/BehaviorSubject';
import { Injectable } from '@angular/core';
var EventService = /** @class */ (function () {
function EventService() {
// For list page to change the list mode
this.showHierarchyListSubject = new BehaviorSubject(true); // By default the list mode is true
this.workItemListReloadOnLink = new BehaviorSubject(true); // The value is always true, this is just to trigger the list update
// TODO : should be replaced by ngrx/store implementation
this.labelAdd = new BehaviorSubject({}); // The value is always true, this is just to trigger the list update
}
EventService.decorators = [
{ type: Injectable },
];
/** @nocollapse */
EventService.ctorParameters = function () { return []; };
return EventService;
}());
export { EventService };
//# sourceMappingURL=event.service.js.map