mirror of
https://github.com/OCA/server-backend.git
synced 2025-02-18 09:52:42 +02:00
10 lines
172 B
Python
10 lines
172 B
Python
from odoo import fields, models
|
|
|
|
|
|
class ResGroups(models.Model):
|
|
_inherit = "res.groups"
|
|
|
|
view_access = fields.Many2many(
|
|
groups="base.group_system",
|
|
)
|