aboutsummaryrefslogblamecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Controller/StaticController.php
blob: 3b844b44c500054cb47bd1412d9c7215399941d2 (plain) (tree)
1
2
3
4
5
6
7
8
9
10

     
                                         






                                                           

                                     







                                                        
       




                                     
                                                        


                   
 






                                                                           
 
<?php

namespace Wallabag\CoreBundle\Controller;

use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;

class StaticController extends Controller
{
    /**
     * @Route("/howto", name="howto")
     */
    public function howtoAction()
    {
        return $this->render(
            'WallabagCoreBundle:Static:howto.html.twig',
            array()
        );
    }

    /**
     * @Route("/about", name="about")
     */
    public function aboutAction()
    {
        return $this->render(
            'WallabagCoreBundle:Static:about.html.twig',
            array()
        );
    }

    /**
     * @Route("/", name="homepage")
     */
    public function apiAction()
    {
        return $this->redirect($this->generateUrl('nelmio_api_doc_index'));
    }
}