aboutsummaryrefslogtreecommitdiffstats
path: root/vid-webpack-master/src/app/services/flags.resolve.ts
diff options
context:
space:
mode:
Diffstat (limited to 'vid-webpack-master/src/app/services/flags.resolve.ts')
-rw-r--r--vid-webpack-master/src/app/services/flags.resolve.ts14
1 files changed, 14 insertions, 0 deletions
diff --git a/vid-webpack-master/src/app/services/flags.resolve.ts b/vid-webpack-master/src/app/services/flags.resolve.ts
new file mode 100644
index 000000000..70449379f
--- /dev/null
+++ b/vid-webpack-master/src/app/services/flags.resolve.ts
@@ -0,0 +1,14 @@
+import {ActivatedRouteSnapshot, Resolve} from "@angular/router";
+import {Injectable} from "@angular/core";
+import {ConfigurationService} from "./configuration.service";
+import {Observable} from "rxjs/Observable";
+
+@Injectable()
+export class FlagsResolve implements Resolve<Observable< { [key: string]: boolean }>> {
+
+ constructor(private _configurationService: ConfigurationService) {}
+
+ resolve(route: ActivatedRouteSnapshot) {
+ return this._configurationService.getFlags();
+ }
+}