mirror of
https://gitlab.com/flectra-community/server-ux.git
synced 2024-11-15 02:32:06 +00:00
12 lines
308 B
Python
12 lines
308 B
Python
# Copyright 2016 - Ursa Information Systems <http://ursainfosystems.com>
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl)
|
|
|
|
|
|
from flectra import models, fields
|
|
|
|
|
|
class IrModelAccess(models.Model):
|
|
_inherit = 'ir.model.access'
|
|
|
|
perm_export = fields.Boolean('Export Access', default=True)
|