mirror of
https://github.com/coollabsio/coolify.git
synced 2026-08-24 10:05:47 -05:00
Add OIDC discovery, JWKS validation, Socialite integration, OAuth identity linking, and configurable registration policy for password and SSO signups. Update related settings/profile UI and tests.
8 lines
115 B
PHP
8 lines
115 B
PHP
<?php
|
|
|
|
namespace App\Auth\Oidc\Exceptions;
|
|
|
|
use RuntimeException;
|
|
|
|
class OidcException extends RuntimeException {}
|