Skip to content

Commit

Permalink
[FIX] cetmix_tower_server: fix test in pipeline
Browse files Browse the repository at this point in the history
Task: 4055
  • Loading branch information
tendil committed Jan 5, 2025
1 parent 3c014db commit c04ea3f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<record id="cx_tower_variable_rule_group_manager_access" model="ir.rule">
<field name="name">Tower Variable: Manager Access Rule</field>
<field name="model_id" ref="model_cx_tower_variable" />
<field name="domain_force">[('access_level', '&lt;=', '2')]</field>
<field name="domain_force">[('access_level', 'in', ['1', '2'])]</field>
<field name="groups" eval="[(4, ref('cetmix_tower_server.group_manager'))]" />
</record>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
['|',
('is_global', '=', True),
'&amp;',
('access_level', '&lt;=', '2'),
('access_level', 'in', ['1', '2']),
('server_id.message_partner_ids', 'in', [user.partner_id.id])
]
</field>
Expand Down

0 comments on commit c04ea3f

Please sign in to comment.