fix errors

This commit is contained in:
Peter Maquiran
2024-12-06 11:21:32 +01:00
parent 5a1bbe6103
commit aef73625f0
10 changed files with 112 additions and 69 deletions
@@ -26,4 +26,9 @@ export class RemoteNotificationService {
return await this.httpService.patch<NotificationOutputDTO>(`${this.baseUrl}/Notifications/${id}/status`);
}
async notificationDeleteAll(userId: any) {
return await this.httpService.delete<NotificationOutputDTO>(`${this.baseUrl}/Notifications/${userId}`);
}
}