disable authentication for the moment

This commit is contained in:
Nicolas Lœuillet 2015-02-02 12:54:14 +01:00
parent c5772d118f
commit 889249804f
2 changed files with 39 additions and 29 deletions

View File

@ -23,36 +23,37 @@ security:
pattern: ^/login$ pattern: ^/login$
anonymous: ~ anonymous: ~
secured_area: # secured_area:
pattern: ^/ # pattern: ^/
anonymous: ~ # anonymous: ~
form_login: # form_login:
login_path: /login # login_path: /login
#
use_forward: false # use_forward: false
#
check_path: /login_check # check_path: /login_check
#
post_only: true # post_only: true
#
always_use_default_target_path: true # always_use_default_target_path: true
default_target_path: / # default_target_path: /
target_path_parameter: redirect_url # target_path_parameter: redirect_url
use_referer: true # use_referer: true
#
failure_path: null # failure_path: null
failure_forward: false # failure_forward: false
#
username_parameter: _username # username_parameter: _username
password_parameter: _password # password_parameter: _password
#
csrf_parameter: _csrf_token # csrf_parameter: _csrf_token
intention: authenticate # intention: authenticate
#
logout: # logout:
path: /logout # path: /logout
target: / # target: /
access_control: access_control:
- { path: ^/api/doc, roles: IS_AUTHENTICATED_ANONYMOUSLY }
- { path: ^/login, roles: IS_AUTHENTICATED_ANONYMOUSLY } - { path: ^/login, roles: IS_AUTHENTICATED_ANONYMOUSLY }
- { path: ^/, roles: ROLE_USER } - { path: ^/, roles: ROLE_USER }

View File

@ -17,4 +17,13 @@ class StaticController extends Controller
array() array()
); );
} }
/**
* @Route("/", name="homepage")
*/
public function apiAction()
{
return $this->redirect($this->generateUrl('nelmio_api_doc_index'));
}
} }