8000 [cookbook][acl] Fixing permission table based on the BasicPermissionM… · DavidChristmann/symfony-docs@718ab70 · GitHub
[go: up one dir, main page]

Skip to content

Commit 718ab70

Browse files
committed
[cookbook][acl] Fixing permission table based on the BasicPermissionMap - closes symfony#842
1 parent c58e7a3 commit 718ab70

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

cookbook/security/acl_advanced.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -102,17 +102,17 @@ Built-in Permission Map
102102
+------------------+----------------------------+-----------------------------+
103103
| Attribute | Intended Meaning | Integer Bitmasks |
104104
+==================+============================+=============================+
105-
| VIEW | Whether someone is allowed | VIEW, CREATE, EDIT, |
106-
| | to view the domain object. | OPERATOR, MASTER, or OWNER |
107-
+------------------+----------------------------+-----------------------------+
108-
| CREATE | Whether someone is allowed | EDIT, OPERATOR, MASTER, |
109-
| | to create the domain | or OWNER |
110-
| | object. | |
105+
| VIEW | Whether someone is allowed | VIEW, EDIT, OPERATOR, |
106+
| | to view the domain object. | MASTER, or OWNER |
111107
+------------------+----------------------------+-----------------------------+
112108
| EDIT | Whether someone is allowed | EDIT, OPERATOR, MASTER, |
113109
| | to make changes to the | or OWNER |
114110
| | domain object. | |
115111
+------------------+----------------------------+-----------------------------+
112+
| CREATE | Whether someone is allowed | CREATE, OPERATOR, MASTER, |
113+
| | to create the domain | or OWNER |
114+
| | object. | |
115+
+------------------+----------------------------+-----------------------------+
116116
| DELETE | Whether someone is allowed | DELETE, OPERATOR, MASTER, |
117117
| | to delete the domain | or OWNER |
118118
| | object. | |

0 commit comments

Comments
 (0)
0