rename methods for clarity

This commit is contained in:
2025-02-02 13:49:59 -08:00
parent 62b040fccd
commit 88ab399c11
2 changed files with 6 additions and 6 deletions

View File

@@ -3,15 +3,15 @@ import { GetterRepository } from "../repositories/GetterRepository";
export class NotificationService {
constructor(private repository: GetterRepository) {}
public startListeningForNotification() {
public scheduleNotification() {
}
public stopListeningForNotification() {
public cancelNotification() {
}
public stopListeningForAllNotifications() {
public cancelAllNotifications() {
}