mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2025-02-19 17:26:32 +00:00
16 lines
387 B
TypeScript
16 lines
387 B
TypeScript
|
import { Injectable } from '@angular/core';
|
||
|
import { MatSnackBar } from '@angular/material';
|
||
|
|
||
|
@Injectable()
|
||
|
export class ToasterService {
|
||
|
constructor(private snackbar: MatSnackBar) { }
|
||
|
|
||
|
public error(message: string) {
|
||
|
this.snackbar.open(message, null, { duration: 2000 });
|
||
|
}
|
||
|
|
||
|
public success(message: string) {
|
||
|
this.snackbar.open(message, null, { duration: 2000 });
|
||
|
}
|
||
|
}
|