mirror of
https://github.com/OCA/knowledge.git
synced 2025-07-13 15:34:49 -06:00
11 lines
301 B
Python
11 lines
301 B
Python
# Copyright 2022 Manuel Regidor <manuel.regidor@sygel.es>
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class DocumentPage(models.Model):
|
|
_inherit = "document.page"
|
|
|
|
groups_id = fields.Many2many(comodel_name="res.groups", string="Groups")
|