Skip to content
Snippets Groups Projects
Unverified Commit 73db84b4 authored by Tim van Dijen's avatar Tim van Dijen Committed by GitHub
Browse files

Remove www-script - There's a controller in place now

parent 3da2cad6
No related branches found
No related tags found
No related merge requests found
<?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();
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment