<?php
/**
* Created by PhpStorm.
* User: uwethiess
* Date: 26.09.16
* Time: 14:45
*/
namespace App\Controller;
use App\Api\ProthelisApi;
use App\Entity\User;
use App\Form\UserEditForm;
use App\Form\UserSignupForm;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
class AppController extends AbstractController
{
/**
* @Route("/app/", name="web_app")
* @return Response
*/
public function webappAction(Request $request)
{
return $this->redirect('app.html');
}
}