diff --git a/modules/multiauth/www/selectsource.php b/modules/multiauth/www/selectsource.php deleted file mode 100644 index 6e7c870ed290ff91253b9ed51b44b16eb1bef049..0000000000000000000000000000000000000000 --- a/modules/multiauth/www/selectsource.php +++ /dev/null @@ -1,24 +0,0 @@ -<?php - -/** - * This page shows a list of authentication sources. When the user selects - * one of them if pass this information to the - * \SimpleSAML\Module\multiauth\Auth\Source\MultiAuth class and call the - * delegateAuthentication method on it. - * - * @package SimpleSAMLphp - */ - -namespace SimpleSAML\Module\multiauth; - -use SimpleSAML\Configuration; -use SimpleSAML\Session; -use Symfony\Component\HttpFoundation\Request; - -$config = Configuration::getInstance(); -$session = Session::getSessionFromRequest(); -$request = Request::createFromGlobals(); - -$controller = new Controller\DiscoController($config, $session); -$response = $controller->discovery($request); -$response->send();