mirror of
https://gitlab.com/flectra-community/reporting-engine.git
synced 2024-11-14 18:22:04 +00:00
13 lines
311 B
Python
13 lines
311 B
Python
|
# Copyright 2019 Creu Blanca
|
||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||
|
|
||
|
from flectra import fields, models
|
||
|
|
||
|
|
||
|
class IrUiView(models.Model):
|
||
|
_inherit = "ir.ui.view"
|
||
|
|
||
|
type = fields.Selection(
|
||
|
selection_add=[("dashboard", "Dashboard")], ondelete={"dashboard": "cascade"}
|
||
|
)
|