[FIX] portal: move group definition of portal back to security/portal_security.xml

bzr revid: rco@openerp.com-20120914134116-sg2yqsro8c62bxg2
This commit is contained in:
Raphael Collet 2012-09-14 15:41:16 +02:00
parent ca4326bbd1
commit be03938f47
2 changed files with 13 additions and 6 deletions

View File

@ -2,12 +2,6 @@
<openerp>
<data noupdate="1">
<!-- Don't use any implied_ids here; this group's behavior is particular -->
<record id="group_portal_member" model="res.groups">
<field name="name">Portal Member</field>
<field name="comment">Portal members can access information through the portal menu. Also, they are chrooted in this specific menu.</field>
</record>
<record id="portal" model="res.portal">
<field name="name">Portal</field>
<field name="group_id" ref="group_portal_member"/>

View File

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data noupdate="1">
<!-- The portal group -->
<record id="group_portal_member" model="res.groups">
<field name="name">Portal</field>
<field name="comment">Portal members can access information through the portal menu. Also, they are chrooted in this specific menu.</field>
<!-- Don't use any implied_ids here; this group's behavior is particular -->
</record>
</data>
</openerp>