fix: adds locationAnalyzer to default-app template

Signed-off-by: Alexander Zerbe <alex@aqube.de>
This commit is contained in:
Alexander Zerbe
2021-03-20 13:36:34 +01:00
parent dcb5d5e373
commit 4912f21ef6
@@ -2,7 +2,8 @@ import { useHotCleanup } from '@backstage/backend-common';
import {
CatalogBuilder,
createRouter,
runPeriodically
runPeriodically,
locationAnalyzer,
} from '@backstage/plugin-catalog-backend';
import { Router } from 'express';
import { PluginEnvironment } from '../types';
@@ -24,6 +25,7 @@ export default async function createPlugin(env: PluginEnvironment): Promise<Rout
entitiesCatalog,
locationsCatalog,
higherOrderOperation,
locationAnalyzer,
logger: env.logger,
});
}