summaryrefslogtreecommitdiff
path: root/addons/google_recaptcha/__manifest__.py
blob: 4972bbbe1ff87615d96674d58d7a324f9bde2674 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.

{
    'name': 'Google reCAPTCHA integration',
    'category': 'Hidden',
    'version': '1.0',
    'description': """
        This module implements reCaptchaV3 so that you can prevent bot spam on your public modules.
    """,
    'depends': ['base_setup'],
    'data': [
        'views/assets.xml',
        'views/res_config_settings_view.xml',
    ],
    'auto_install': False,
    'license': 'LGPL-3',
}