diff options
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 |