Add notification service for deployment status and blur login page when neccesary

This commit is contained in:
Gabor PEK
2018-03-12 14:50:44 +01:00
parent fcb5d6ecf0
commit 8f4a6fd83e
5 changed files with 61 additions and 28 deletions

View File

@ -0,0 +1,11 @@
import {Injectable} from '@angular/core';
import {Subject} from 'rxjs/Subject';
@Injectable()
export class DeploymentNotificationService {
deploying: Subject<boolean> = new Subject<boolean>();
constructor() { }
}