aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Controller/StaticController.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Wallabag/CoreBundle/Controller/StaticController.php')
-rw-r--r--src/Wallabag/CoreBundle/Controller/StaticController.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Controller/StaticController.php b/src/Wallabag/CoreBundle/Controller/StaticController.php
index 64875a66..9ada371b 100644
--- a/src/Wallabag/CoreBundle/Controller/StaticController.php
+++ b/src/Wallabag/CoreBundle/Controller/StaticController.php
@@ -28,4 +28,15 @@ class StaticController extends Controller
28 array() 28 array()
29 ); 29 );
30 } 30 }
31
32 /**
33 * @Route("/quickstart", name="quickstart")
34 */
35 public function quickstartAction()
36 {
37 return $this->render(
38 'WallabagCoreBundle:Static:quickstart.html.twig',
39 array()
40 );
41 }
31} 42}