diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-01-23 12:45:24 +0100 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-01-23 12:45:24 +0100 |
commit | 163eae0bb15d0daa5390f434a42a8176eca186e7 (patch) | |
tree | 0e1ab2c2bb9591e826e73d875cbb04fdabb3f77f /src/WallabagBundle/Controller/StaticController.php | |
parent | bd9f08157cc10619e9bb9dace6df43090dde44a9 (diff) | |
download | wallabag-163eae0bb15d0daa5390f434a42a8176eca186e7.tar.gz wallabag-163eae0bb15d0daa5390f434a42a8176eca186e7.tar.zst wallabag-163eae0bb15d0daa5390f434a42a8176eca186e7.zip |
toggle archive / fav actions
Diffstat (limited to 'src/WallabagBundle/Controller/StaticController.php')
-rw-r--r-- | src/WallabagBundle/Controller/StaticController.php | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/WallabagBundle/Controller/StaticController.php b/src/WallabagBundle/Controller/StaticController.php new file mode 100644 index 00000000..aee2bb7e --- /dev/null +++ b/src/WallabagBundle/Controller/StaticController.php | |||
@@ -0,0 +1,20 @@ | |||
1 | <?php | ||
2 | |||
3 | namespace WallabagBundle\Controller; | ||
4 | |||
5 | use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; | ||
6 | use Symfony\Bundle\FrameworkBundle\Controller\Controller; | ||
7 | |||
8 | class StaticController extends Controller | ||
9 | { | ||
10 | /** | ||
11 | * @Route("/about", name="about") | ||
12 | */ | ||
13 | public function aboutAction() | ||
14 | { | ||
15 | return $this->render( | ||
16 | 'WallabagBundle:Static:about.html.twig', | ||
17 | array() | ||
18 | ); | ||
19 | } | ||
20 | } | ||