add authModuleKeycloakOIDCProvider to backend
Some checks failed
Create and publish a Docker image / docker (push) Has been cancelled
Some checks failed
Create and publish a Docker image / docker (push) Has been cancelled
This commit is contained in:
parent
dd065a4897
commit
74a1c5046f
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