[IMP] gamification: add portal_gamification module to add security rules

bzr revid: mat@openerp.com-20131216150726-su27319fvvxevam6
This commit is contained in:
Martin Trigaux 2013-12-16 16:07:26 +01:00
parent 8c3b6c0a3d
commit 354190b44e
6 changed files with 86 additions and 8 deletions

View File

@ -1,20 +1,19 @@
id,name,model_id/id,group_id/id,perm_read,perm_write,perm_create,perm_unlink
goal_anybody,"Goal Anybody",model_gamification_goal,,1,1,0,0
goal_employee,"Goal Employee",model_gamification_goal,base.group_user,1,1,0,0
goal_manager,"Goal Manager",model_gamification_goal,group_goal_manager,1,1,1,1
goal_type_anybody,"Goal Type Anybody",model_gamification_goal_type,,1,0,0,0
goal_type_employee,"Goal Type Employee",model_gamification_goal_type,base.group_user,1,0,0,0
goal_type_manager,"Goal Type Manager",model_gamification_goal_type,group_goal_manager,1,1,1,1
plan_anybody,"Goal Plan Anybody",model_gamification_goal_plan,,1,0,0,0
plan_employee,"Goal Plan Employee",model_gamification_goal_plan,base.group_user,1,0,0,0
plan_manager,"Goal Plan Manager",model_gamification_goal_plan,group_goal_manager,1,1,1,1
planline_anybody,"Goal Planline Anybody",model_gamification_goal_planline,,1,0,0,0
planline_employee,"Goal Planline Employee",model_gamification_goal_planline,base.group_user,1,0,0,0
planline_manager,"Goal Planline Manager",model_gamification_goal_planline,group_goal_manager,1,1,1,1
badge_anybody,"Badge Anybody",model_gamification_badge,,1,0,0,0
badge_employee,"Badge Employee",model_gamification_badge,base.group_user,1,0,0,0
badge_manager,"Badge Manager",model_gamification_badge,group_goal_manager,1,1,1,1
badge_user_anybody,"Badge-user Anybody",model_gamification_badge_user,,1,0,0,0
badge_user_user,"Badge-user User",model_gamification_badge_user,base.group_user,1,1,1,0
badge_user_employee,"Badge-user Employee",model_gamification_badge_user,base.group_user,1,1,1,0
badge_user_manager,"Badge-user Manager",model_gamification_badge_user,group_goal_manager,1,1,1,1

1 id name model_id/id group_id/id perm_read perm_write perm_create perm_unlink
2 goal_anybody goal_employee Goal Anybody Goal Employee model_gamification_goal base.group_user 1 1 0 0
3 goal_manager Goal Manager model_gamification_goal group_goal_manager 1 1 1 1
4 goal_type_anybody goal_type_employee Goal Type Anybody Goal Type Employee model_gamification_goal_type base.group_user 1 0 0 0
5 goal_type_manager Goal Type Manager model_gamification_goal_type group_goal_manager 1 1 1 1
6 plan_anybody plan_employee Goal Plan Anybody Goal Plan Employee model_gamification_goal_plan base.group_user 1 0 0 0
7 plan_manager Goal Plan Manager model_gamification_goal_plan group_goal_manager 1 1 1 1
8 planline_anybody planline_employee Goal Planline Anybody Goal Planline Employee model_gamification_goal_planline base.group_user 1 0 0 0
9 planline_manager Goal Planline Manager model_gamification_goal_planline group_goal_manager 1 1 1 1
10 badge_anybody badge_employee Badge Anybody Badge Employee model_gamification_badge base.group_user 1 0 0 0
11 badge_manager Badge Manager model_gamification_badge group_goal_manager 1 1 1 1
12 badge_user_anybody badge_user_employee Badge-user Anybody Badge-user Employee model_gamification_badge_user base.group_user 1 0 1 0 1 0
13 badge_user_user badge_user_manager Badge-user User Badge-user Manager model_gamification_badge_user base.group_user group_goal_manager 1 1 1 0 1
14
15
16
17
18
19

View File

@ -2,7 +2,7 @@
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2004-2013 Tiny SPRL (<http://openerp.com>).
# Copyright (C) 2013 OpenERP SA (<http://openerp.com>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as

View File

@ -0,0 +1,21 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################

View File

@ -0,0 +1,42 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2013 OpenERP SA (<http://openerp.com>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
{
'name': 'Portal Gamification',
'version': '1',
'category': 'Tools',
'complexity': 'easy',
'description': """
This module adds security rules for gamification to allow portal users to participate to challenges
===================================================================================================
""",
'author': 'OpenERP SA',
'depends': ['gamification','portal'],
'data': [
'security/ir.model.access.csv',
'security/portal_security.xml',
],
'installable': True,
'auto_install': True,
'category': 'Hidden',
}

View File

@ -0,0 +1,7 @@
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
goal_portal,"Goal Portal",gamification.model_gamification_goal,portal.group_portal,1,1,0,0
goal_type_portal,"Goal Type Portal",gamification.model_gamification_goal_type,portal.group_portal,1,0,0,0
plan_portal,"Goal Plan Portal",gamification.model_gamification_goal_plan,portal.group_portal,1,0,0,0
planline_portal,"Goal Planline Portal",gamification.model_gamification_goal_planline,portal.group_portal,1,0,0,0
badge_portal,"Badge Portal",gamification.model_gamification_badge,portal.group_portal,1,0,0,0
badge_user_portal,"Badge-user Portal",gamification.model_gamification_badge_user,portal.group_portal,1,1,1,0
1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
2 goal_portal Goal Portal gamification.model_gamification_goal portal.group_portal 1 1 0 0
3 goal_type_portal Goal Type Portal gamification.model_gamification_goal_type portal.group_portal 1 0 0 0
4 plan_portal Goal Plan Portal gamification.model_gamification_goal_plan portal.group_portal 1 0 0 0
5 planline_portal Goal Planline Portal gamification.model_gamification_goal_planline portal.group_portal 1 0 0 0
6 badge_portal Badge Portal gamification.model_gamification_badge portal.group_portal 1 0 0 0
7 badge_user_portal Badge-user Portal gamification.model_gamification_badge_user portal.group_portal 1 1 1 0

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record id="gamification.goal_user_visibility" model="ir.rule">
<field name="groups" eval="[(4, ref('portal.group_portal'))]"/>
</record>
</data>
</openerp>