diff --git a/web.php b/web.php index 6ce08b2..c56baf8 100644 --- a/web.php +++ b/web.php @@ -29,6 +29,7 @@ if (!empty($_ENV['DEV'])) { Container::$routeCollection = new RouteCollection(); Container::$routeCollection->get('home', '', [HomeController::class, 'getHome']); +Container::$routeCollection->get('oauth-config-root', '.well-known/openid-configuration', [OAuthController::class, 'getConfig']); Container::$routeCollection->group('login', function (RouteCollection $routeCollection) { $routeCollection->get('login', '', [LoginController::class, 'getLoginForm']); $routeCollection->post('login-action', '', [LoginController::class, 'login']);