Skip to content

Commit

Permalink
[MIG] shopinvader_auth_jwt: Migration to 16.0
Browse files Browse the repository at this point in the history
From 14.0. Renames shopinvader_auth_jwt to shopinvader_restapi_auth_jwt to ensure naming consistency
  • Loading branch information
lmignon committed Oct 6, 2023
1 parent 5989739 commit a38534f
Show file tree
Hide file tree
Showing 17 changed files with 14 additions and 5 deletions.
1 change: 0 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ exclude: |
^shopinvader_algolia/|
^shopinvader_assortment/|
^shopinvader_auth_api_key/|
^shopinvader_auth_jwt/|
^shopinvader_backend_image_proxy/|
^shopinvader_cart_expiry/|
^shopinvader_category_image_for_product/|
Expand Down
6 changes: 6 additions & 0 deletions setup/shopinvader_restapi_auth_jwt/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import setuptools

setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@

{
"name": "Shopinvader JWT Authentication",
"version": "14.0.1.2.0",
"version": "16.0.1.2.0",
"summary": "Find shopinvader backend and partner from JWT token",
"author": "ACSONE SA/NV",
"website": "https://github.com/shopinvader/odoo-shopinvader",
"license": "AGPL-3",
"depends": [
"shopinvader",
"shopinvader_restapi",
"auth_jwt",
],
"data": [
"views/shopinvader_backend.xml",
],
"demo": [],
"installable": False,
"installable": True,
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@
<record id="view_id" model="ir.ui.view">
<field name="name">shopinvader.backend.inherit.view.form</field>
<field name="model">shopinvader.backend</field>
<field name="inherit_id" ref="shopinvader.shopinvader_backend_view_form" />
<field
name="inherit_id"
ref="shopinvader_restapi.shopinvader_backend_view_form"
/>
<field name="arch" type="xml">
<group name="auth" position="inside">
<field name="jwt_aud" />
Expand Down

0 comments on commit a38534f

Please sign in to comment.