Skip to content

Commit

Permalink
Authentication is always Keycloak
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasVHG committed Nov 18, 2024
1 parent af661fc commit d749f8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Auth/AuthControllerProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -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],
Expand Down

0 comments on commit d749f8e

Please sign in to comment.