diff --git a/auth_admin_passkey/README.rst b/auth_admin_passkey/README.rst new file mode 100644 index 000000000..15be819dc --- /dev/null +++ b/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/) diff --git a/__unported__/auth_admin_passkey/__init__.py b/auth_admin_passkey/__init__.py similarity index 100% rename from __unported__/auth_admin_passkey/__init__.py rename to auth_admin_passkey/__init__.py diff --git a/__unported__/auth_admin_passkey/__openerp__.py b/auth_admin_passkey/__openerp__.py similarity index 65% rename from __unported__/auth_admin_passkey/__openerp__.py rename to auth_admin_passkey/__openerp__.py index 6d49ade8a..77df9c73f 100644 --- a/__unported__/auth_admin_passkey/__openerp__.py +++ b/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, } diff --git a/__unported__/auth_admin_passkey/data/ir_config_parameter.xml b/auth_admin_passkey/data/ir_config_parameter.xml similarity index 100% rename from __unported__/auth_admin_passkey/data/ir_config_parameter.xml rename to auth_admin_passkey/data/ir_config_parameter.xml diff --git a/__unported__/auth_admin_passkey/i18n/auth_admin_passkey.pot b/auth_admin_passkey/i18n/auth_admin_passkey.pot similarity index 100% rename from __unported__/auth_admin_passkey/i18n/auth_admin_passkey.pot rename to auth_admin_passkey/i18n/auth_admin_passkey.pot diff --git a/__unported__/auth_admin_passkey/i18n/fr.po b/auth_admin_passkey/i18n/fr.po similarity index 100% rename from __unported__/auth_admin_passkey/i18n/fr.po rename to auth_admin_passkey/i18n/fr.po diff --git a/__unported__/auth_admin_passkey/model/__init__.py b/auth_admin_passkey/model/__init__.py similarity index 100% rename from __unported__/auth_admin_passkey/model/__init__.py rename to auth_admin_passkey/model/__init__.py diff --git a/__unported__/auth_admin_passkey/model/res_config.py b/auth_admin_passkey/model/res_config.py similarity index 100% rename from __unported__/auth_admin_passkey/model/res_config.py rename to auth_admin_passkey/model/res_config.py diff --git a/__unported__/auth_admin_passkey/model/res_users.py b/auth_admin_passkey/model/res_users.py similarity index 100% rename from __unported__/auth_admin_passkey/model/res_users.py rename to auth_admin_passkey/model/res_users.py diff --git a/__unported__/auth_admin_passkey/static/src/img/icon.png b/auth_admin_passkey/static/src/img/icon.png similarity index 100% rename from __unported__/auth_admin_passkey/static/src/img/icon.png rename to auth_admin_passkey/static/src/img/icon.png diff --git a/__unported__/auth_admin_passkey/tests/__init__.py b/auth_admin_passkey/tests/__init__.py similarity index 100% rename from __unported__/auth_admin_passkey/tests/__init__.py rename to auth_admin_passkey/tests/__init__.py diff --git a/__unported__/auth_admin_passkey/tests/test_auth_admin_passkey.py b/auth_admin_passkey/tests/test_auth_admin_passkey.py similarity index 100% rename from __unported__/auth_admin_passkey/tests/test_auth_admin_passkey.py rename to auth_admin_passkey/tests/test_auth_admin_passkey.py diff --git a/__unported__/auth_admin_passkey/view/res_config_view.xml b/auth_admin_passkey/view/res_config_view.xml similarity index 100% rename from __unported__/auth_admin_passkey/view/res_config_view.xml rename to auth_admin_passkey/view/res_config_view.xml