notifyError()

in app/src/app/services/notifications.service.ts [17:24]


  notifyError(message: string) {
    const notif: Notification = {
      type:    "error",
      message: message
    };

    this.notificationsSource.next(notif);
  }