Jairo Llopis
4 years ago
No known key found for this signature in database
GPG Key ID: 8B8A6900E4831A9B
10 changed files with 124 additions and 134 deletions
-
40privacy/__manifest__.py
-
2privacy/demo/res_users.xml
-
19privacy/models/privacy_activity.py
-
15privacy/security/data_protection.xml
-
23privacy/views/data_protection_menu_view.xml
-
18privacy/views/privacy_activity_view.xml
-
2setup/.setuptools-odoo-make-default-ignore
-
2setup/README
-
1setup/privacy/odoo/addons/privacy
-
6setup/privacy/setup.py
@ -1,28 +1,22 @@ |
|||
# Copyright 2018 Eficent Business and IT Consulting Services S.L. |
|||
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html |
|||
{ |
|||
'name': 'Data Privacy and Protection', |
|||
'version': '12.0.1.1.0', |
|||
'category': 'Data Protection', |
|||
'summary': 'Provides data privacy and protection features ' |
|||
'to comply to regulations, such as GDPR.', |
|||
'author': "Eficent, " |
|||
"Tecnativa, " |
|||
"Odoo Community Association (OCA)", |
|||
'website': 'http://www.github.com/OCA/data-protection', |
|||
'license': 'AGPL-3', |
|||
'data': [ |
|||
'security/data_protection.xml', |
|||
'security/ir.model.access.csv', |
|||
'views/data_protection_menu_view.xml', |
|||
'views/privacy_activity_view.xml', |
|||
"name": "Data Privacy and Protection", |
|||
"version": "12.0.1.1.0", |
|||
"category": "Data Protection", |
|||
"summary": "Provides data privacy and protection features " |
|||
"to comply to regulations, such as GDPR.", |
|||
"author": "Eficent, " "Tecnativa, " "Odoo Community Association (OCA)", |
|||
"website": "http://www.github.com/OCA/data-protection", |
|||
"license": "AGPL-3", |
|||
"data": [ |
|||
"security/data_protection.xml", |
|||
"security/ir.model.access.csv", |
|||
"views/data_protection_menu_view.xml", |
|||
"views/privacy_activity_view.xml", |
|||
], |
|||
'demo': [ |
|||
'demo/res_users.xml', |
|||
], |
|||
'depends': [ |
|||
'mail', |
|||
], |
|||
'installable': True, |
|||
'application': True, |
|||
"demo": ["demo/res_users.xml"], |
|||
"depends": ["mail"], |
|||
"installable": True, |
|||
"application": True, |
|||
} |
@ -0,0 +1,2 @@ |
|||
# addons listed in this file are ignored by |
|||
# setuptools-odoo-make-default (one addon per line) |
@ -0,0 +1,2 @@ |
|||
To learn more about this directory, please visit |
|||
https://pypi.python.org/pypi/setuptools-odoo |
@ -0,0 +1 @@ |
|||
../../../../privacy |
@ -0,0 +1,6 @@ |
|||
import setuptools |
|||
|
|||
setuptools.setup( |
|||
setup_requires=['setuptools-odoo'], |
|||
odoo_addon=True, |
|||
) |
Write
Preview
Loading…
Cancel
Save
Reference in new issue