mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2025-06-29 10:45:13 +00:00
Add notification service for deployment status and blur login page when neccesary
This commit is contained in:
11
src/app/services/deployment-notification.service.ts
Normal file
11
src/app/services/deployment-notification.service.ts
Normal 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() { }
|
||||
|
||||
}
|
Reference in New Issue
Block a user