mirror of
https://gitlab.com/flectra-community/server-ux.git
synced 2024-11-15 02:32:06 +00:00
8 lines
157 B
Python
8 lines
157 B
Python
from flectra import fields, models
|
|
|
|
|
|
class View(models.Model):
|
|
_inherit = "ir.ui.view"
|
|
|
|
mass_server_action_id = fields.Many2one("ir.actions.server")
|