[IMP] remove portal_anonymous, create group_public in server and public user in website

bzr revid: chm@openerp.com-20130726090515-jle1l2joqzw2zlnt
This commit is contained in:
Christophe Matthieu 2013-07-26 11:05:15 +02:00
parent 1cb4b63da8
commit d12e8dd387
2 changed files with 11 additions and 0 deletions

View File

@ -91,5 +91,15 @@ Administrator</field>
<field eval="10" name="sequence"/>
</record>
<!--
A group dedicated to the public user only, making groups
restrictions more convenient.
-->
<record id="group_public" model="res.groups">
<field name="name">Public</field>
<field name="comment">Public users have specific access rights (such as record rules and restricted menus).
They usually do not belong to the usual OpenERP groups.</field>
</record>
</data>
</openerp>

View File

@ -117,4 +117,5 @@
"access_ir_mail_server","ir_mail_server","model_ir_mail_server","group_system",1,1,1,1
"access_ir_actions_client","ir_actions_client all","model_ir_actions_client",,1,0,0,0
"access_ir_needaction_mixin","ir_needaction_mixin","model_ir_needaction_mixin",,1,1,1,1
"access_res_partner_public","res.partner","base.model_res_partner","base.group_public",1,0,0,0

1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
117 access_ir_mail_server ir_mail_server model_ir_mail_server group_system 1 1 1 1
118 access_ir_actions_client ir_actions_client all model_ir_actions_client 1 0 0 0
119 access_ir_needaction_mixin ir_needaction_mixin model_ir_needaction_mixin 1 1 1 1
120 access_res_partner_public res.partner base.model_res_partner base.group_public 1 0 0 0
121