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.

63 lines
2.0 KiB

  1. # -*- encoding: utf-8 -*-
  2. ################################################################################
  3. # See Copyright and Licence Informations undermentioned.
  4. ################################################################################
  5. {
  6. 'name': 'Authentification - Admin Passkey',
  7. 'version': '2.1',
  8. 'category': 'base',
  9. 'description': """
  10. Admin password become a passkey for all active logins
  11. =====================================================
  12. Functionnalities :
  13. ------------------
  14. * Administrator has now the possibility to login in with any login;
  15. * By default, OpenERP will send a mail to user and admin to indicate them;
  16. Technical informations :
  17. ------------------------
  18. * Create two ir_config_parameter to enable / disable mail sending;
  19. Limits :
  20. --------
  21. * For the moment, this module doesn't manage translations for the mails;
  22. * This module is compatible with 'auth_crypt' depending of the order of the installation:
  23. * if 'auth_crypt' is first installed, it will work;
  24. * if 'auth_admin_passkey' is first installed, it won't work;
  25. If you want to install 'auth_crypt', please uninstall 'auth_admin_passkey' and
  26. reinstall it after the installation of 'auth_crypt'.
  27. Otherwise, you can propose the merge of a glue module that manage this case.
  28. Copyright and Licence :
  29. -----------------------
  30. * 2014, Groupement Régional Alimentaire de Proximité
  31. * Licence : AGPL-3 (http://www.gnu.org/licenses/)
  32. Contacts :
  33. ----------
  34. * Sylvain LE GAL (https://twitter.com/legalsylvain);
  35. * <informatique@grap.coop> for any help or question about this module.
  36. """,
  37. 'author': 'GRAP',
  38. 'website': 'http://www.grap.coop',
  39. 'license': 'AGPL-3',
  40. 'depends': [
  41. 'mail',
  42. ],
  43. 'data': [
  44. 'data/ir_config_parameter.xml',
  45. 'view/res_config_view.xml',
  46. ],
  47. 'demo': [],
  48. 'js': [],
  49. 'css': [],
  50. 'qweb': [],
  51. 'images': [],
  52. 'post_load': '',
  53. 'application': False,
  54. 'installable': True,
  55. 'auto_install': False,
  56. }