Skip to content

Commit

Permalink
[MIG] web_ir_actions_act_multi: Migration to 17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
augusto-weiss committed Sep 30, 2024
1 parent 5201109 commit de306e7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion web_ir_actions_act_multi/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"name": "Web Actions Multi",
"summary": "Enables triggering of more than one action on ActionManager",
"category": "Web",
"version": "16.0.1.0.0",
"version": "17.0.1.0.0",
"license": "LGPL-3",
"author": "Modoolar, " "CorporateHub, " "Odoo Community Association (OCA)",
"website": "https://github.com/OCA/web",
Expand Down
4 changes: 2 additions & 2 deletions web_ir_actions_act_multi/models/ir_actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@

class IrActionsActMulti(models.Model):
_name = "ir.actions.act_multi"
_description = "Action Mulit"
_description = "Action Multi"
_inherit = "ir.actions.actions"
_table = "ir_actions"
_table = "ir_actions_act_multi"

type = fields.Char(default="ir.actions.act_multi")

Expand Down
2 changes: 1 addition & 1 deletion web_ir_actions_act_multi/security/ir.model.access.csv
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
crud_ir_actions_act_multi,access_ir_actions_act_multi,model_ir_actions_act_multi,,1,1,1,1
crud_ir_actions_act_multi,access_ir_actions_act_multi,model_ir_actions_act_multi,base.group_user,1,1,1,1

0 comments on commit de306e7

Please sign in to comment.