diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2016-06-24 14:22:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-24 14:22:47 +0200 |
commit | 9f8c43e222feb88f18597e42ab0512fda483d46d (patch) | |
tree | 6b2a4ad27428497713eef68ce57d4b58f18507cc /app/config/security.yml | |
parent | fb5c17a9ab5e10b1de9caa50e73638fdae19cb78 (diff) | |
parent | fdc90ceb172bb7b237e34a1a01f53018c09f514b (diff) | |
download | wallabag-9f8c43e222feb88f18597e42ab0512fda483d46d.tar.gz wallabag-9f8c43e222feb88f18597e42ab0512fda483d46d.tar.zst wallabag-9f8c43e222feb88f18597e42ab0512fda483d46d.zip |
Merge pull request #2172 from wallabag/more-tests
Change the way to login user in tests
Diffstat (limited to 'app/config/security.yml')
-rw-r--r-- | app/config/security.yml | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/app/config/security.yml b/app/config/security.yml index 0748c06c..e24e03df 100644 --- a/app/config/security.yml +++ b/app/config/security.yml | |||
@@ -3,12 +3,14 @@ security: | |||
3 | FOS\UserBundle\Model\UserInterface: sha512 | 3 | FOS\UserBundle\Model\UserInterface: sha512 |
4 | 4 | ||
5 | role_hierarchy: | 5 | role_hierarchy: |
6 | ROLE_ADMIN: ROLE_USER | 6 | ROLE_ADMIN: ROLE_USER |
7 | ROLE_SUPER_ADMIN: [ ROLE_USER, ROLE_ADMIN, ROLE_ALLOWED_TO_SWITCH ] | 7 | ROLE_SUPER_ADMIN: [ ROLE_USER, ROLE_ADMIN, ROLE_ALLOWED_TO_SWITCH ] |
8 | 8 | ||
9 | providers: | 9 | providers: |
10 | administrators: | 10 | administrators: |
11 | entity: { class: WallabagUserBundle:User, property: username } | 11 | entity: |
12 | class: WallabagUserBundle:User | ||
13 | property: username | ||
12 | fos_userbundle: | 14 | fos_userbundle: |
13 | id: fos_user.user_provider.username | 15 | id: fos_user.user_provider.username |
14 | 16 | ||
@@ -31,7 +33,7 @@ security: | |||
31 | anonymous: true | 33 | anonymous: true |
32 | 34 | ||
33 | login_firewall: | 35 | login_firewall: |
34 | pattern: ^/login$ | 36 | pattern: ^/login$ |
35 | anonymous: ~ | 37 | anonymous: ~ |
36 | 38 | ||
37 | secured_area: | 39 | secured_area: |
@@ -40,12 +42,12 @@ security: | |||
40 | provider: fos_userbundle | 42 | provider: fos_userbundle |
41 | csrf_token_generator: security.csrf.token_manager | 43 | csrf_token_generator: security.csrf.token_manager |
42 | 44 | ||
43 | anonymous: true | 45 | anonymous: true |
44 | remember_me: | 46 | remember_me: |
45 | secret: "%secret%" | 47 | secret: "%secret%" |
46 | lifetime: 31536000 | 48 | lifetime: 31536000 |
47 | path: / | 49 | path: / |
48 | domain: ~ | 50 | domain: ~ |
49 | 51 | ||
50 | logout: | 52 | logout: |
51 | path: /logout | 53 | path: /logout |