flectra/addons/anonymization/__manifest__.py

33 lines
1.2 KiB
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# -*- coding: utf-8 -*-
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
{
'name': 'Database Anonymization',
'author' : 'Odoo S.A',
'version': '1.0',
'category': 'Extra Tools',
'description': """
This module allows you to anonymize a database.
===============================================
This module allows you to keep your data confidential for a given database.
This process is useful, if you want to use the migration process and protect
your own or your customers confidential data. The principle is that you run
an anonymization tool which will hide your confidential data(they are replaced
by XXX characters). Then you can send the anonymized database to the migration
team. Once you get back your migrated database, you restore it and reverse the
anonymization process to recover your previous data.
""",
'depends': ['base'],
'demo': ['data/anonymization_demo.xml'],
'data': [
'data/ir.model.fields.anonymization.csv',
'security/ir.model.access.csv',
'views/anonymization_views.xml',
'wizard/anonymize_wizard_views.xml'
],
'installable': True,
'auto_install': False,
}