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.
53 lines
1.6 KiB
53 lines
1.6 KiB
# -*- encoding: utf-8 -*-
|
|
################################################################################
|
|
# See Copyright and Licence Informations undermentioned.
|
|
################################################################################
|
|
|
|
{
|
|
'name': 'Authentification - Admin Passkey',
|
|
'version': '2.1',
|
|
'category': 'base',
|
|
'description': """
|
|
Admin password become a passkey for all active logins
|
|
=====================================================
|
|
|
|
Functionnalities :
|
|
------------------
|
|
* 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 has the same password as the admin, OpenERP will inform the admin;
|
|
|
|
Technical informations :
|
|
------------------------
|
|
* Create two ir_config_parameter to enable / disable mail sending;
|
|
|
|
Copyright and Licence :
|
|
-----------------------
|
|
* 2014, Groupement Régional Alimentaire de Proximité
|
|
* Licence : AGPL-3 (http://www.gnu.org/licenses/)
|
|
|
|
Contacts :
|
|
----------
|
|
* Sylvain LE GAL (https://twitter.com/legalsylvain);
|
|
* <informatique@grap.coop> for any help or question about this module.
|
|
""",
|
|
'author': 'GRAP',
|
|
'website': 'http://www.grap.coop',
|
|
'license': 'AGPL-3',
|
|
'depends': [
|
|
'mail',
|
|
],
|
|
'data': [
|
|
'data/ir_config_parameter.xml',
|
|
'view/res_config_view.xml',
|
|
],
|
|
'demo': [],
|
|
'js': [],
|
|
'css': [],
|
|
'qweb': [],
|
|
'images': [],
|
|
'post_load': '',
|
|
'application': False,
|
|
'installable': True,
|
|
'auto_install': False,
|
|
}
|