add NotificationService method and test case stub

This commit is contained in:
2025-02-12 19:30:11 -08:00
parent 19b08d1c05
commit 3ce72d79be
2 changed files with 18 additions and 0 deletions

View File

@@ -250,4 +250,12 @@ export class NotificationService {
}
return this.deviceIdsToDeliverTo[tuple.toString()].has(deviceId);
}
/**
* Return all scheduled notification for the given device ID.
* @param deviceId
*/
public async getAllScheduledNotificationsForDevice(deviceId: string): Promise<ScheduledNotificationData[]> {
return [];
}
}