fix(notifications): post process broadcast notification even without signals

Signed-off-by: Hellgren Heikki <heikki.hellgren@op.fi>
This commit is contained in:
Hellgren Heikki
2025-03-18 12:19:17 +02:00
parent 37416e06d6
commit d4c22b731c
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-notifications-backend': patch
---
Make sure to post process broadcast notifications even without signals support
@@ -470,8 +470,8 @@ export async function createRouter(
},
channel: 'notifications',
});
postProcessNotification(ret, opts);
}
postProcessNotification(ret, opts);
return notification;
};