From a317be66bfa1f86c5076059558f343b2e188ea72 Mon Sep 17 00:00:00 2001 From: Mitchell Herrijgers Date: Sun, 19 May 2019 08:38:07 +0200 Subject: [PATCH] Fix keycloak sample code to use keycloak instead of google --- examples/keycloak-auth-unleash.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/keycloak-auth-unleash.js b/examples/keycloak-auth-unleash.js index 7b0e2a26da..0e2e8ec5c7 100644 --- a/examples/keycloak-auth-unleash.js +++ b/examples/keycloak-auth-unleash.js @@ -3,14 +3,14 @@ // const unleash = require('unleash-server'); const unleash = require('../lib/server-impl.js'); -const enableGoogleOauth = require('./google-auth-hook'); +const enableKeycloak = require('./keycloak-auth-hook'); unleash .start({ databaseUrl: 'postgres://unleash_user:passord@localhost:5432/unleash', secret: 'super-duper-secret', adminAuthentication: 'custom', - preRouterHook: enableGoogleOauth, + preRouterHook: enableKeycloak, }) .then(server => { console.log(