Files
server-backend/base_user_role/__manifest__.py
Dawn Hwang 029dc9c8a0 [FIX] base_user_role: Set group on access_wizard_groups_into_role
From 17.0 onwards, any access right rule with set permissions must have
a group on it, otherwise it will throw a warning on install
2024-10-21 08:09:18 +02:00

27 lines
788 B
Python

# Copyright 2014 ABF OSIELL <http://osiell.com>
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
{
"name": "User roles",
"version": "17.0.1.0.2",
"category": "Tools",
"author": "ABF OSIELL, Odoo Community Association (OCA)",
"license": "LGPL-3",
"development_status": "Production/Stable",
"maintainers": ["sebalix", "jcdrubay", "novawish"],
"website": "https://github.com/OCA/server-backend",
"depends": ["base"],
"data": [
"security/ir.model.access.csv",
"data/ir_cron.xml",
"data/ir_module_category.xml",
"views/role.xml",
"views/user.xml",
"views/group.xml",
"wizards/create_from_user.xml",
"wizards/wizard_groups_into_role.xml",
],
"installable": True,
}