Skip to content

Commit

Permalink
[MIG] privacy_consent: Migration to 17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JordiToledo committed Feb 11, 2025
1 parent c24f0da commit 4b91720
Show file tree
Hide file tree
Showing 45 changed files with 4,143 additions and 243 deletions.
91 changes: 91 additions & 0 deletions privacy/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
===========================
Data Privacy and Protection
===========================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:9b05cc9cf4a67b41933bc08a6af9524c73326d848c7c28daa67ee91ef7deae47
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png
:target: https://odoo-community.org/page/development-status
:alt: Production/Stable
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fdata--protection-lightgray.png?logo=github
:target: https://github.com/OCA/data-protection/tree/17.0/privacy
:alt: OCA/data-protection
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/data-protection-17-0/data-protection-17-0-privacy
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
:target: https://runboat.odoo-community.org/builds?repo=OCA/data-protection&target_branch=17.0
:alt: Try me on Runboat

|badge1| |badge2| |badge3| |badge4| |badge5|

This application provides data protection and privacy feature, to comply
with regulations such as GDPR.

**Table of contents**

.. contents::
:local:

Usage
=====

To define data processing activities:

1. Go to *Privacy > Master Data > Activities* and create one.
2. Define the data processing activity using the provided tools.

Consult your lawyer!

Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https://github.com/OCA/data-protection/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us to smash it by providing a detailed and welcomed
`feedback <https://github.com/OCA/data-protection/issues/new?body=module:%20privacy%0Aversion:%2017.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.

Do not contact contributors directly about support or help with technical issues.

Credits
=======

Authors
-------

* Eficent
* Tecnativa

Contributors
------------

- Miquel Raïch <[email protected]>
- Daniel Reis <[email protected]>
- Nicolas JEUDY
<`https://github.com/njeudy\\> <https://github.com/njeudy\>>`__

Maintainers
-----------

This module is maintained by the OCA.

.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org

OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.

This module is part of the `OCA/data-protection <https://github.com/OCA/data-protection/tree/17.0/privacy>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
1 change: 1 addition & 0 deletions privacy/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import models
23 changes: 23 additions & 0 deletions privacy/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# 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": "17.0.1.0.0",
"development_status": "Production/Stable",
"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": "https://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,
}
8 changes: 8 additions & 0 deletions privacy/demo/res_users.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8" ?>
<!-- Copyright 2018 Tecnativa - Jairo Llopis
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
<data>
<record id="base.user_demo" model="res.users">
<field name="groups_id" eval="[(4, ref('group_data_protection_user'))]" />
</record>
</data>
Loading

0 comments on commit 4b91720

Please sign in to comment.