feat(auth): Add Clerk OAuth Provider (#5553)

This commit is contained in:
Yassir Elmarissi
2025-06-18 14:29:46 +02:00
committed by GitHub
parent 4375f52c5d
commit a77bd88258
29 changed files with 63 additions and 7 deletions

View File

@@ -27,6 +27,7 @@ class OauthSetting extends Model
case 'azure':
return filled($this->client_id) && filled($this->client_secret) && filled($this->tenant);
case 'authentik':
case 'clerk':
return filled($this->client_id) && filled($this->client_secret) && filled($this->base_url);
default:
return filled($this->client_id) && filled($this->client_secret);