Browse Source

Merge pull request #96 from acsone/8.0-amu-migration_auth_admin_passkey

[8.0] migration of auth_admin_passkey
pull/122/head
Yannick Vaucher 10 years ago
parent
commit
f13b13ca5c
  1. 18
      auth_admin_passkey/README.rst
  2. 0
      auth_admin_passkey/__init__.py
  3. 22
      auth_admin_passkey/__openerp__.py
  4. 0
      auth_admin_passkey/data/ir_config_parameter.xml
  5. 0
      auth_admin_passkey/i18n/auth_admin_passkey.pot
  6. 0
      auth_admin_passkey/i18n/fr.po
  7. 0
      auth_admin_passkey/model/__init__.py
  8. 0
      auth_admin_passkey/model/res_config.py
  9. 0
      auth_admin_passkey/model/res_users.py
  10. 0
      auth_admin_passkey/static/src/img/icon.png
  11. 0
      auth_admin_passkey/tests/__init__.py
  12. 0
      auth_admin_passkey/tests/test_auth_admin_passkey.py
  13. 0
      auth_admin_passkey/view/res_config_view.xml

18
auth_admin_passkey/README.rst

@ -0,0 +1,18 @@
Admin password become a passkey for all active logins
=====================================================
Functionality :
---------------
* Administrator has now the possibility to login in with any login;
* By default, OpenERP will send a mail to user and admin to indicate them;
* If a user and the admin have the same password, admin will be informed;
Technical information :
-----------------------
* Create two ir_config_parameter to enable / disable mail sending;
Copyright, Author and Licence :
-------------------------------
* Copyright : 2014, Groupement Régional Alimentaire de Proximité;
* Author : Sylvain LE GAL (https://twitter.com/legalsylvain);
* Licence : AGPL-3 (http://www.gnu.org/licenses/)

0
__unported__/auth_admin_passkey/__init__.py → auth_admin_passkey/__init__.py

22
__unported__/auth_admin_passkey/__openerp__.py → auth_admin_passkey/__openerp__.py

@ -24,26 +24,6 @@
'name': 'Authentification - Admin Passkey',
'version': '2.1.1',
'category': 'base',
'description': """
Admin password become a passkey for all active logins
=====================================================
Functionality :
---------------
* Administrator has now the possibility to login in with any login;
* By default, OpenERP will send a mail to user and admin to indicate them;
* If a user and the admin have the same password, admin will be informed;
Technical information :
-----------------------
* Create two ir_config_parameter to enable / disable mail sending;
Copyright, Author and Licence :
-------------------------------
* Copyright : 2014, Groupement Régional Alimentaire de Proximité;
* Author : Sylvain LE GAL (https://twitter.com/legalsylvain);
* Licence : AGPL-3 (http://www.gnu.org/licenses/)
""",
'author': 'GRAP',
'website': 'http://www.grap.coop',
'license': 'AGPL-3',
@ -61,6 +41,6 @@ Copyright, Author and Licence :
'images': [],
'post_load': '',
'application': False,
'installable': False,
'installable': True,
'auto_install': False,
}

0
__unported__/auth_admin_passkey/data/ir_config_parameter.xml → auth_admin_passkey/data/ir_config_parameter.xml

0
__unported__/auth_admin_passkey/i18n/auth_admin_passkey.pot → auth_admin_passkey/i18n/auth_admin_passkey.pot

0
__unported__/auth_admin_passkey/i18n/fr.po → auth_admin_passkey/i18n/fr.po

0
__unported__/auth_admin_passkey/model/__init__.py → auth_admin_passkey/model/__init__.py

0
__unported__/auth_admin_passkey/model/res_config.py → auth_admin_passkey/model/res_config.py

0
__unported__/auth_admin_passkey/model/res_users.py → auth_admin_passkey/model/res_users.py

0
__unported__/auth_admin_passkey/static/src/img/icon.png → auth_admin_passkey/static/src/img/icon.png

Before

Width: 128  |  Height: 128  |  Size: 4.0 KiB

After

Width: 128  |  Height: 128  |  Size: 4.0 KiB

0
__unported__/auth_admin_passkey/tests/__init__.py → auth_admin_passkey/tests/__init__.py

0
__unported__/auth_admin_passkey/tests/test_auth_admin_passkey.py → auth_admin_passkey/tests/test_auth_admin_passkey.py

0
__unported__/auth_admin_passkey/view/res_config_view.xml → auth_admin_passkey/view/res_config_view.xml

Loading…
Cancel
Save