Skip to content

Commit

Permalink
Merge
Browse files Browse the repository at this point in the history
Signed-off-by: Florian Oberndörfer <[email protected]>
  • Loading branch information
flo0852 committed Dec 3, 2024
1 parent cf281a6 commit a5ad607
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion apps/backend/src/app/alerting/alerting.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -222,8 +222,12 @@ export class AlertingService {
switch (alertType.name) {
case 'SIZE_ALERT': {
alert = await this.sizeAlertRepository.findOne(options);
break;
}
case 'CREATION_DATE_ALERT': {
alert = await this.creationDateRepository.findOne(options);
break;
}
//TODO: add creationDate Alert as soon as it is implemented
}

if (!alert) {
Expand Down

0 comments on commit a5ad607

Please sign in to comment.