fix typo
[odoo/odoo.git] / addons / portal / portal.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2011 Tiny SPRL (<http://tiny.be>).
6 #
7 #    This program is free software: you can redistribute it and/or modify
8 #    it under the terms of the GNU Affero General Public License as
9 #    published by the Free Software Foundation, either version 3 of the
10 #    License, or (at your option) any later version.
11 #
12 #    This program is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU Affero General Public License for more details.
16 #
17 #    You should have received a copy of the GNU Affero General Public License
18 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20 ##############################################################################
21
22 from osv import osv, fields
23
24 class portal(osv.osv):
25     _name = 'res.portal'
26     _description = 'Portal'
27     _columns = {
28         'name': fields.char(string='Name', size=64, required=True),
29         'user_ids': fields.one2many('res.users', 'portal_id', string='Portal users',
30             help='Gives the set of users associated to this portal'),
31         'group_ids': fields.many2many('res.groups', 'portal_group', 'portal_id', 'group_id',
32             string='Groups', help='Users of this portal automatically belong to those groups'),
33     }
34
35 portal()
36
37 class users(osv.osv):
38     _name = 'res.users'
39     _inherit = 'res.users'
40     _columns = {
41         'portal_id': fields.many2one('res.portal', string='Portal',
42             help='If given, the portal defines customized menu and access rules'),
43     }
44
45 users()
46