first commit
This commit is contained in:
0
src/Controller/.gitignore
vendored
Normal file
0
src/Controller/.gitignore
vendored
Normal file
19
src/Controller/MainController.php
Normal file
19
src/Controller/MainController.php
Normal file
@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
|
||||
namespace App\Controller;
|
||||
|
||||
use Symfony\Component\HttpFoundation\Request;
|
||||
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
||||
|
||||
class MainController extends AbstractController
|
||||
{
|
||||
|
||||
/**
|
||||
* @Route("/loginAppSaml", name="login_app_saml")
|
||||
*/
|
||||
public function loginAppSaml(Request $request)
|
||||
{
|
||||
return new Response("saml");
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user