From ecc01818d78ef8a459b3fe5c639d20c2a5b906dc Mon Sep 17 00:00:00 2001 From: blam Date: Thu, 13 Jan 2022 10:30:47 +0100 Subject: [PATCH] chore: removing this from the default app as it breaks with invalid config Signed-off-by: blam --- packages/backend/src/index.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/backend/src/index.ts b/packages/backend/src/index.ts index 1942c36ad1..a70a90511a 100644 --- a/packages/backend/src/index.ts +++ b/packages/backend/src/index.ts @@ -141,7 +141,6 @@ async function main() { apiRouter.use('/scaffolder', await scaffolder(scaffolderEnv)); apiRouter.use('/tech-insights', await techInsights(techInsightsEnv)); apiRouter.use('/auth', await auth(authEnv)); - apiRouter.use('/azure-devops', await azureDevOps(azureDevOpsEnv)); apiRouter.use('/search', await search(searchEnv)); apiRouter.use('/techdocs', await techdocs(techdocsEnv)); apiRouter.use('/todo', await todo(todoEnv));