-
-
Notifications
You must be signed in to change notification settings - Fork 531
/
__manifest__.py
34 lines (33 loc) · 1.08 KB
/
__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
32
33
34
# Copyright 2015 Anubía, soluciones en la nube,SL (http://www.anubia.es)
# Copyright 2017 Onestein (http://www.onestein.eu)
# Copyright (C) 2019-Today: Druidoo (<https://www.druidoo.io>)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
"name": "Optional CSV import",
"version": "16.0.1.0.0",
"category": "Server tools",
"summary": "Group-based permissions for importing CSV files",
"license": "AGPL-3",
"author": "Odoo Community Association (OCA), "
"Alejandro Santana <[email protected]>, "
"Onestein",
"maintainer": "Odoo Community Association (OCA)",
"website": "https://github.com/OCA/server-ux",
"depends": [
"web",
"web_tour",
"base_import",
],
"data": [
"security/base_import_security_group_security.xml",
],
"assets": {
"web.assets_backend": [
"base_import_security_group/static/src/js/import.esm.js"
],
"web.assets_tests": [
"base_import_security_group/static/src/js/tour_import.js",
],
},
"installable": True,
}