forked from shopinvader/odoo-shopinvader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
31 lines (30 loc) · 921 Bytes
/
__manifest__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Copyright 2023 Akretion (https://www.akretion.com).
# @author Sébastien BEAU <[email protected]>
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
{
"name": "Shopinvader Api Security Sale",
"summary": "Add security rule to expose sale order",
"version": "16.0.1.1.1",
"development_status": "Alpha",
"category": "Uncategorized",
"website": "https://github.com/shopinvader/odoo-shopinvader",
"author": " Akretion",
"license": "AGPL-3",
"external_dependencies": {
"python": [],
"bin": [],
},
"depends": [
"sale",
"fastapi",
],
"data": [
"security/groups.xml",
"security/acl_product_product.xml",
"security/acl_product_template.xml",
"security/acl_uom_uom.xml",
"security/rule+acl_sale_order.xml",
"security/rule+acl_sale_order_line.xml",
],
"demo": [],
}