aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Controller
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2015-08-07 21:22:43 +0200
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2015-08-07 21:22:43 +0200
commitb7dd5f824c0d533c2a902ae41b70ac740ecd2fec (patch)
treea307ebab75e084e8733d49284ddf87bf636b3713 /src/Wallabag/CoreBundle/Controller
parent54139268f8648ee8d08f120949df4f1f5b8dd938 (diff)
downloadwallabag-b7dd5f824c0d533c2a902ae41b70ac740ecd2fec.tar.gz
wallabag-b7dd5f824c0d533c2a902ae41b70ac740ecd2fec.tar.zst
wallabag-b7dd5f824c0d533c2a902ae41b70ac740ecd2fec.zip
add howto page
Diffstat (limited to 'src/Wallabag/CoreBundle/Controller')
-rw-r--r--src/Wallabag/CoreBundle/Controller/StaticController.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Controller/StaticController.php b/src/Wallabag/CoreBundle/Controller/StaticController.php
index 07931f58..09be1b74 100644
--- a/src/Wallabag/CoreBundle/Controller/StaticController.php
+++ b/src/Wallabag/CoreBundle/Controller/StaticController.php
@@ -8,6 +8,16 @@ use Symfony\Bundle\FrameworkBundle\Controller\Controller;
8class StaticController extends Controller 8class StaticController extends Controller
9{ 9{
10 /** 10 /**
11 * @Route("/howto", name="howto")
12 */
13 public function howtoAction()
14 {
15 return $this->render(
16 'WallabagCoreBundle:Static:howto.html.twig',
17 array()
18 );
19 }
20 /**
11 * @Route("/about", name="about") 21 * @Route("/about", name="about")
12 */ 22 */
13 public function aboutAction() 23 public function aboutAction()