-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ADD] Address router to app + cart sub-app
- Loading branch information
1 parent
68c1bd5
commit 3f77487
Showing
7 changed files
with
112 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# generated from manifests external_dependencies | ||
openupgradelib | ||
fastapi | ||
openupgradelib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<!-- Copyright 2023 ACSONE SA/NV | ||
License LGPL-3.0 or later (http://www.gnu.org/licenses/LGPL). --> | ||
<odoo> | ||
|
||
<record model="ir.ui.view" id="fastapi_endpoint_shopinvader_v2_app_demo_form_view"> | ||
<field name="model">fastapi.endpoint</field> | ||
<field name="inherit_id" ref="fastapi.fastapi_endpoint_form_view" /> | ||
<field name="arch" type="xml"> | ||
<span name="configuration" position="after"> | ||
<group | ||
name="shopinvader_configuration" | ||
title="Configuration" | ||
attrs="{'invisible': [('app', '!=', 'shopinvader_demo')]}" | ||
> | ||
<field | ||
name="auth_jwt_validator_id" | ||
attrs="{'required': [('app', '=', 'shopinvader_demo')]}" | ||
/> | ||
</group> | ||
</span> | ||
</field> | ||
</record> | ||
|
||
</odoo> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters