Skip to content

Commit

Permalink
[MIG] auth_api_key_group: Migration to 18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
thienvh332 committed Oct 9, 2024
1 parent d4b08d2 commit 2828803
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 5 deletions.
4 changes: 4 additions & 0 deletions auth_api_key_group/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ Grouping per se does nothing. This feature is supposed to be used by
other modules to limit access to services or records based on groups of
keys.

The migration of this module from 17.0 to 18.0 was financially supported
by Camptocamp.

**Table of contents**

.. contents::
Expand Down Expand Up @@ -62,6 +65,7 @@ Contributors

- Simone Orsi <[email protected]>
- Son Ho [email protected]
- Thien Vo Hong <[email protected]>

Other credits
-------------
Expand Down
2 changes: 1 addition & 1 deletion auth_api_key_group/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
Grouping per se does nothing. This feature is supposed to be used by other modules
to limit access to services or records based on groups of keys.
""",
"version": "17.0.1.0.0",
"version": "18.0.1.0.0",
"development_status": "Beta",
"license": "LGPL-3",
"website": "https://github.com/OCA/server-auth",
Expand Down
1 change: 1 addition & 0 deletions auth_api_key_group/readme/CONTRIBUTORS.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
- Simone Orsi \<<[email protected]>\>
- Son Ho <[email protected]>
- Thien Vo Hong \<<[email protected]>\>
2 changes: 2 additions & 0 deletions auth_api_key_group/readme/DESCRIPTION.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@ Allow grouping API keys together.
Grouping per se does nothing. This feature is supposed to be used by
other modules to limit access to services or records based on groups of
keys.

The migration of this module from 17.0 to 18.0 was financially supported by Camptocamp.
3 changes: 3 additions & 0 deletions auth_api_key_group/static/description/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -374,6 +374,8 @@ <h1 class="title">Auth API key group</h1>
<p>Grouping per se does nothing. This feature is supposed to be used by
other modules to limit access to services or records based on groups of
keys.</p>
<p>The migration of this module from 17.0 to 18.0 was financially supported
by Camptocamp.</p>
<p><strong>Table of contents</strong></p>
<div class="contents local topic" id="contents">
<ul class="simple">
Expand Down Expand Up @@ -408,6 +410,7 @@ <h2><a class="toc-backref" href="#toc-entry-4">Contributors</a></h2>
<ul class="simple">
<li>Simone Orsi &lt;<a class="reference external" href="mailto:simone.orsi&#64;camptocamp.com">simone.orsi&#64;camptocamp.com</a>&gt;</li>
<li>Son Ho <a class="reference external" href="mailto:sonhd&#64;trobz.com">sonhd&#64;trobz.com</a></li>
<li>Thien Vo Hong &lt;<a class="reference external" href="mailto:thienvh&#64;trobz.com">thienvh&#64;trobz.com</a>&gt;</li>
</ul>
</div>
<div class="section" id="other-credits">
Expand Down
8 changes: 4 additions & 4 deletions auth_api_key_group/views/auth_api_key_group_view.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,19 @@
</field>
</record>
<record model="ir.ui.view" id="auth_api_key_group_tree_view">
<field name="name">auth.api.key.group.tree (in auth_api_key_group)</field>
<field name="name">auth.api.key.group.list (in auth_api_key_group)</field>
<field name="model">auth.api.key.group</field>
<field name="arch" type="xml">
<tree>
<list>
<field name="name" />
<field name="code" />
</tree>
</list>
</field>
</record>
<record model="ir.actions.act_window" id="auth_api_key_group_act_window">
<field name="name">Auth Api Key Groups</field>
<field name="res_model">auth.api.key.group</field>
<field name="view_mode">tree,form</field>
<field name="view_mode">list,form</field>
<field name="domain">[]</field>
<field name="context">{}</field>
</record>
Expand Down

0 comments on commit 2828803

Please sign in to comment.