bzr revid: rco@openerp.com-20110323125601-qsyfjys82t4eqdhw
This commit is contained in:
Raphael Collet 2011-03-23 13:56:01 +01:00
parent 8c32a45d29
commit 013d6896e8
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ class portal(osv.osv):
'name': fields.char(string='Name', size=64, required=True),
'user_ids': fields.one2many('res.users', 'portal_id', string='Portal users',
help='Gives the set of users associated to this portal'),
'group_ids': field.many2many('res.groups', 'portal_group', 'portal_id', 'group_id',
'group_ids': fields.many2many('res.groups', 'portal_group', 'portal_id', 'group_id',
string='Groups', help='Users of this portal automatically belong to those groups'),
}