Merge pull request 'add authModuleKeycloakOIDCProvider to backend' (#2) from IPCEICIS-2751_fix_keycloak_in_backstage into main
Some checks failed
Create and publish a Docker image / docker (push) Failing after 51s
Some checks failed
Create and publish a Docker image / docker (push) Failing after 51s
Reviewed-on: DevFW-CICD/backstage-cnoe#2
This commit is contained in:
commit
75bcadc8a5
1 changed files with 3 additions and 1 deletions
|
@ -1,5 +1,6 @@
|
|||
import { createBackend } from '@backstage/backend-defaults';
|
||||
import { cnoeScaffolderActions } from './plugins/scaffolder';
|
||||
import { authModuleKeycloakOIDCProvider } from './plugins/auth';
|
||||
|
||||
const backend = createBackend();
|
||||
|
||||
|
@ -38,6 +39,7 @@ backend.add(
|
|||
);
|
||||
|
||||
// cnoe plugins
|
||||
backend.add(authModuleKeycloakOIDCProvider);
|
||||
backend.add(cnoeScaffolderActions);
|
||||
|
||||
backend.start();
|
||||
backend.start();
|
Loading…
Reference in a new issue