backend-defaults: add new auth services

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2024-02-21 14:53:52 +01:00
parent 7fe5355575
commit 9c4588183d
@@ -32,13 +32,18 @@ import {
tokenManagerServiceFactory,
urlReaderServiceFactory,
identityServiceFactory,
authServiceFactory,
httpAuthServiceFactory,
userInfoServiceFactory,
} from '@backstage/backend-app-api';
export const defaultServiceFactories = [
authServiceFactory(),
cacheServiceFactory(),
rootConfigServiceFactory(),
databaseServiceFactory(),
discoveryServiceFactory(),
httpAuthServiceFactory(),
httpRouterServiceFactory(),
identityServiceFactory(),
lifecycleServiceFactory(),
@@ -49,6 +54,7 @@ export const defaultServiceFactories = [
rootLoggerServiceFactory(),
schedulerServiceFactory(),
tokenManagerServiceFactory(),
userInfoServiceFactory(),
urlReaderServiceFactory(),
];