From d749f8eff1a1075a0cadb4ca8522bb298ce4d9a4 Mon Sep 17 00:00:00 2001 From: JonasVHG <4658984+JonasVHG@users.noreply.github.com> Date: Mon, 18 Nov 2024 16:43:37 +0100 Subject: [PATCH] Authentication is always Keycloak --- app/Auth/AuthControllerProvider.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Auth/AuthControllerProvider.php b/app/Auth/AuthControllerProvider.php index 7448713..2614982 100644 --- a/app/Auth/AuthControllerProvider.php +++ b/app/Auth/AuthControllerProvider.php @@ -15,7 +15,7 @@ public function connect(Application $app): ControllerCollection { $app['auth_controller'] = $app->share( function (Application $app) { - $authConfig = $app['config']['keycloak']['enable'] ? $app['config']['keycloak'] : $app['config']['auth0']; + $authConfig = $app['config']['keycloak']; return new AuthController( $app[Auth0::class],