You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
820 B

  1. # -*- coding: utf-8 -*-
  2. # Copyright 2015 GRAP - Sylvain LE GAL
  3. # Copyright 2017 Tecnativa - David Vidal
  4. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
  5. {
  6. 'name': 'Authentification - Brute-Force Filter',
  7. 'version': '10.0.2.2.0',
  8. 'category': 'Tools',
  9. 'summary': "Track Authentication Attempts and Prevent Brute-force Attacks",
  10. 'author': "GRAP, "
  11. "Tecnativa, "
  12. "Odoo Community Association (OCA)",
  13. 'website': 'https://github.com/OCA/server-tools',
  14. 'license': 'AGPL-3',
  15. 'depends': [
  16. # If we don't depend on it, it would inhibit this addon
  17. "auth_crypt",
  18. ],
  19. 'data': [
  20. 'security/ir_model_access.yml',
  21. 'views/view.xml',
  22. 'views/action.xml',
  23. 'views/menu.xml',
  24. ],
  25. 'installable': True,
  26. }