[catalog] Make unprocessed entities visible
Create an API route to fetch failed and pending entities, as well as a frontend plugin to view them. Added a broken entity to the sample data. Signed-off-by: Rickard Dybeck <dybeck@spotify.com>
This commit is contained in:
@@ -26,6 +26,7 @@
|
||||
"@backstage/plugin-catalog-graph": "workspace:^",
|
||||
"@backstage/plugin-catalog-import": "workspace:^",
|
||||
"@backstage/plugin-catalog-react": "workspace:^",
|
||||
"@backstage/plugin-catalog-unprocessed-entities": "workspace:^",
|
||||
"@backstage/plugin-circleci": "workspace:^",
|
||||
"@backstage/plugin-cloudbuild": "workspace:^",
|
||||
"@backstage/plugin-code-coverage": "workspace:^",
|
||||
|
||||
@@ -111,6 +111,7 @@ import { StackstormPage } from '@backstage/plugin-stackstorm';
|
||||
import { PuppetDbPage } from '@backstage/plugin-puppetdb';
|
||||
import { DevToolsPage } from '@backstage/plugin-devtools';
|
||||
import { customDevToolsPage } from './components/devtools/CustomDevToolsPage';
|
||||
import { CatalogUnprocessedEntitiesPage } from '@backstage/plugin-catalog-unprocessed-entities';
|
||||
|
||||
const app = createApp({
|
||||
apis,
|
||||
@@ -171,6 +172,10 @@ const routes = (
|
||||
>
|
||||
{entityPage}
|
||||
</Route>
|
||||
<Route
|
||||
path="/catalog-unprocessed-entities"
|
||||
element={<CatalogUnprocessedEntitiesPage />}
|
||||
/>
|
||||
<Route
|
||||
path="/catalog-import"
|
||||
element={
|
||||
|
||||
Reference in New Issue
Block a user