[IMP] web_ir_actions_act_view_reload: add missing model

pull/2414/head
Kevin Luna 2023-02-21 10:53:28 +01:00
parent 39493654eb
commit 171547ff8f
3 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1 @@
from . import models

View File

@ -0,0 +1 @@
from . import ir_actions_act_view_reload

View File

@ -0,0 +1,7 @@
from odoo import models
class IrActionsActViewReload(models.Model):
_name = "ir.actions.act_view_reload"
_inherit = "ir.actions.actions"
_description = "View Reload"