[FIX] website_forum: portal user are allowed to delete forum post

If a portal user has engouh karma, this is possible for him, at least graphically, to delete forum posts, even if is not the author of it.
So, he should be allowed to delete forum posts in the ACL
This commit is contained in:
Denis Ledoux 2014-08-20 16:12:25 +02:00
parent 86f99ef250
commit 3cc9a844db
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
access_forum_forum,forum.forum,model_forum_forum,,1,0,0,0
access_forum_forum_manager,forum.forum.maanger,model_forum_forum,base.group_erp_manager,1,1,1,1
access_forum_post_public,forum.post.public,model_forum_post,base.group_public,1,0,0,0
access_forum_post_portal,forum.post.portal,model_forum_post,base.group_portal,1,1,1,0
access_forum_post_portal,forum.post.portal,model_forum_post,base.group_portal,1,1,1,1
access_forum_post_user,forum.post.user,model_forum_post,base.group_user,1,1,1,1
access_forum_post_vote_public,forum.post.vote.public,model_forum_post_vote,base.group_public,1,0,0,0
access_forum_post_vote_portal,orum.post.vote.portal,model_forum_post_vote,base.group_portal,1,1,1,0

1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
2 access_forum_forum forum.forum model_forum_forum 1 0 0 0
3 access_forum_forum_manager forum.forum.maanger model_forum_forum base.group_erp_manager 1 1 1 1
4 access_forum_post_public forum.post.public model_forum_post base.group_public 1 0 0 0
5 access_forum_post_portal forum.post.portal model_forum_post base.group_portal 1 1 1 0 1
6 access_forum_post_user forum.post.user model_forum_post base.group_user 1 1 1 1
7 access_forum_post_vote_public forum.post.vote.public model_forum_post_vote base.group_public 1 0 0 0
8 access_forum_post_vote_portal orum.post.vote.portal model_forum_post_vote base.group_portal 1 1 1 0