NotificationProcessor.postProcess()
Home > @backstage/plugin-notifications-node
> NotificationProcessor
> postProcess
Post process notification after sending it to Backstage UI.
Can be used to send the notification to external services.
postProcess functions are called for each notification recipient individually or once for broadcast notification AFTER the notification has been sent to the Backstage UI.
Signature:
postProcess?(notification: Notification, options: NotificationSendOptions): Promise<void>;
Parameters
Parameter |
Type |
Description |
---|---|---|
notification |
Notification |
The notification to send |
options |
The options to send the notification |
Promise<void>