]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
disable authentication for the moment
authorNicolas Lœuillet <nicolas@loeuillet.org>
Mon, 2 Feb 2015 11:54:14 +0000 (12:54 +0100)
committerNicolas Lœuillet <nicolas@loeuillet.org>
Mon, 2 Feb 2015 11:54:14 +0000 (12:54 +0100)
app/config/security.yml
src/Wallabag/CoreBundle/Controller/StaticController.php

index f4fefe2e4f24e550ddb4ec11305fd2cf7cdca8c0..c1b0fb7782df748a907b5209fc885cb96a733574 100644 (file)
@@ -23,36 +23,37 @@ security:
             pattern:    ^/login$
             anonymous:  ~
 
-        secured_area:
-            pattern:    ^/
-            anonymous: ~
-            form_login:
-                login_path:                     /login
-
-                use_forward:                    false
-
-                check_path:                     /login_check
-
-                post_only:                      true
-
-                always_use_default_target_path: true
-                default_target_path:            /
-                target_path_parameter:          redirect_url
-                use_referer:                    true
-
-                failure_path:                   null
-                failure_forward:                false
-
-                username_parameter:             _username
-                password_parameter:             _password
-
-                csrf_parameter:                 _csrf_token
-                intention:                      authenticate
-
-            logout:
-                path:   /logout
-                target: /
+#        secured_area:
+#            pattern:    ^/
+#            anonymous: ~
+#            form_login:
+#                login_path:                     /login
+#
+#                use_forward:                    false
+#
+#                check_path:                     /login_check
+#
+#                post_only:                      true
+#
+#                always_use_default_target_path: true
+#                default_target_path:            /
+#                target_path_parameter:          redirect_url
+#                use_referer:                    true
+#
+#                failure_path:                   null
+#                failure_forward:                false
+#
+#                username_parameter:             _username
+#                password_parameter:             _password
+#
+#                csrf_parameter:                 _csrf_token
+#                intention:                      authenticate
+#
+#            logout:
+#                path:   /logout
+#                target: /
 
     access_control:
+        - { path: ^/api/doc, roles: IS_AUTHENTICATED_ANONYMOUSLY }
         - { path: ^/login, roles: IS_AUTHENTICATED_ANONYMOUSLY }
         - { path: ^/, roles: ROLE_USER }
index 0fd19d6529859f6e480b9b8d56af2bfbc1b95c41..513a6c114f3ecaa5808aba21640f0f44c521eafc 100644 (file)
@@ -17,4 +17,13 @@ class StaticController extends Controller
             array()
         );
     }
+
+
+    /**
+     * @Route("/", name="homepage")
+     */
+    public function apiAction()
+    {
+        return $this->redirect($this->generateUrl('nelmio_api_doc_index'));
+    }
 }