Skip to main content
Version: Next

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

ParameterTypeDescription
notificationNotificationThe notification to send
optionsNotificationSendOptionsThe options to send the notification

Returns:

Promise<void>