Merge pull request #1877 from andrewthauer/rollbar-updates

Add rollbar organization links, etc.
This commit is contained in:
Fredrik Adelöw
2020-08-12 22:22:05 +02:00
committed by GitHub
15 changed files with 207 additions and 38 deletions
+5 -2
View File
@@ -17,6 +17,9 @@
import { createRouter } from '@backstage/plugin-rollbar-backend';
import type { PluginEnvironment } from '../types';
export default async function createPlugin({ logger }: PluginEnvironment) {
return await createRouter({ logger });
export default async function createPlugin({
logger,
config,
}: PluginEnvironment) {
return await createRouter({ logger, config });
}