feat: allow broadcast notifications

Signed-off-by: Heikki Hellgren <heikki.hellgren@op.fi>
This commit is contained in:
Heikki Hellgren
2024-01-25 10:12:31 +02:00
parent 6a79f9f1ee
commit a3d42153d1
6 changed files with 45 additions and 13 deletions
+2 -2
View File
@@ -4,7 +4,7 @@ Welcome to the notifications backend plugin!
## Getting started
First you have to install `@backstage/plugin-notifications-node` and `@backstage/plugin-signals-node`
First you have to install `@backstage/plugin-notifications-node` and `@backstage/plugin-signals-node`
packages.
Then create a new file to `packages/backend/src/plugins/notifications.ts`:
@@ -23,7 +23,7 @@ export default async function createPlugin(
tokenManager: env.tokenManager,
database: env.database,
discovery: env.discovery,
signalService: env.signalService
signalService: env.signalService,
});
}
```