2020-10-30 15:22:35 +01:00
|
|
|
import { Injectable } from '@angular/core';
|
2020-12-11 18:00:38 +01:00
|
|
|
/* import {
|
2020-10-30 15:22:35 +01:00
|
|
|
Plugins,
|
|
|
|
|
PushNotification,
|
|
|
|
|
PushNotificationToken,
|
|
|
|
|
PushNotificationActionPerformed,
|
|
|
|
|
Capacitor
|
2020-12-11 18:00:38 +01:00
|
|
|
} from '@capacitor/core'; */
|
2020-10-30 15:22:35 +01:00
|
|
|
import { Router } from '@angular/router';
|
|
|
|
|
|
2020-12-11 18:00:38 +01:00
|
|
|
/* const { PushNotifications } = Plugins; */
|
2020-10-30 15:22:35 +01:00
|
|
|
|
|
|
|
|
@Injectable({
|
|
|
|
|
providedIn: 'root'
|
|
|
|
|
})
|
|
|
|
|
export class FcmService {
|
|
|
|
|
|
|
|
|
|
constructor(private router: Router) { }
|
|
|
|
|
|
2022-12-21 10:34:15 +01:00
|
|
|
|
2020-10-30 15:22:35 +01:00
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|