Skip to content

Commit

Permalink
fix: Keycloak user login not showing on index
Browse files Browse the repository at this point in the history
  • Loading branch information
dogukanoksuz committed May 2, 2024
1 parent f8f330f commit 2fa0787
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Controllers/API/AuthController.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public function activeAuthTypes()
{
$types = ['liman'];

if (env('KEYCLOAK_ACTIVE') == 'true') {
if ((bool) env('KEYCLOAK_ACTIVE')) {
$types[] = 'keycloak';
}

Expand Down

0 comments on commit 2fa0787

Please sign in to comment.