X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=src%2FWallabag%2FCoreBundle%2FController%2FStaticController.php;h=9ada371b1c0a8f57e80072df6950a8564b8579bb;hb=86719c63bf47686ca55020e6b0443344de36d45a;hp=3b844b44c500054cb47bd1412d9c7215399941d2;hpb=4fcb7eaf139a4d2cbd0f54574e6c51a0fe852ef1;p=github%2Fwallabag%2Fwallabag.git diff --git a/src/Wallabag/CoreBundle/Controller/StaticController.php b/src/Wallabag/CoreBundle/Controller/StaticController.php index 3b844b44..9ada371b 100644 --- a/src/Wallabag/CoreBundle/Controller/StaticController.php +++ b/src/Wallabag/CoreBundle/Controller/StaticController.php @@ -30,10 +30,13 @@ class StaticController extends Controller } /** - * @Route("/", name="homepage") + * @Route("/quickstart", name="quickstart") */ - public function apiAction() + public function quickstartAction() { - return $this->redirect($this->generateUrl('nelmio_api_doc_index')); + return $this->render( + 'WallabagCoreBundle:Static:quickstart.html.twig', + array() + ); } }