Skip to content

Commit

Permalink
[MIG] user_log_view: Migration to 18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
karizma committed Oct 15, 2024
1 parent 7ad4a71 commit 31005be
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion user_log_view/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{
"name": "User's Log Viewer",
"summary": "Allow to see user's actions log",
"version": "17.0.1.0.0",
"version": "18.0.1.0.0",
"development_status": "Production/Stable",
"category": "Extra Tools",
"website": "https://github.com/OCA/server-auth",
Expand Down
8 changes: 4 additions & 4 deletions user_log_view/views/res_users_views.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,14 @@
</field>
</record>

<record id="res_users_log_view_tree" model="ir.ui.view">
<field name="name">res.users.log.tree</field>
<record id="res_users_log_view_list" model="ir.ui.view">
<field name="name">res.users.log.list</field>
<field name="model">res.users.log</field>
<field name="arch" type="xml">
<tree create="false" default_order="create_date desc">
<list create="false" default_order="create_date desc">
<field name="create_uid" />
<field name="create_date" />
</tree>
</list>
</field>
</record>

Expand Down

0 comments on commit 31005be

Please sign in to comment.