aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Controller/StaticController.php
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2015-02-02 12:54:14 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2015-02-02 12:54:14 +0100
commit889249804f44136fc608bbc6699f47932825d440 (patch)
tree76cbb09b28c886f3d8b60e28bd5f94774eb665d0 /src/Wallabag/CoreBundle/Controller/StaticController.php
parentc5772d118fec5d5b0504c08266abcfaa21228119 (diff)
downloadwallabag-889249804f44136fc608bbc6699f47932825d440.tar.gz
wallabag-889249804f44136fc608bbc6699f47932825d440.tar.zst
wallabag-889249804f44136fc608bbc6699f47932825d440.zip
disable authentication for the moment
Diffstat (limited to 'src/Wallabag/CoreBundle/Controller/StaticController.php')
-rw-r--r--src/Wallabag/CoreBundle/Controller/StaticController.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Controller/StaticController.php b/src/Wallabag/CoreBundle/Controller/StaticController.php
index 0fd19d65..513a6c11 100644
--- a/src/Wallabag/CoreBundle/Controller/StaticController.php
+++ b/src/Wallabag/CoreBundle/Controller/StaticController.php
@@ -17,4 +17,13 @@ class StaticController extends Controller
17 array() 17 array()
18 ); 18 );
19 } 19 }
20
21
22 /**
23 * @Route("/", name="homepage")
24 */
25 public function apiAction()
26 {
27 return $this->redirect($this->generateUrl('nelmio_api_doc_index'));
28 }
20} 29}