Skip to content

Commit 1284d4f

Browse files
committed
[BOT] post-merge updates
1 parent 5bc4730 commit 1284d4f

4 files changed

Lines changed: 14 additions & 12 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ addon | version | maintainers | summary
3131
[auth_session_timeout](auth_session_timeout/) | 18.0.1.0.0 | | This module disable all inactive sessions since a given delay
3232
[base_user_empty_password](base_user_empty_password/) | 18.0.1.0.0 | [![grindtildeath](https://github.com/grindtildeath.png?size=30px)](https://github.com/grindtildeath) | Allows to empty password of users
3333
[base_user_show_email](base_user_show_email/) | 18.0.1.0.0 | | Untangle user login and email
34+
[impersonate_login](impersonate_login/) | 18.0.1.0.0 | [![Kev-Roche](https://github.com/Kev-Roche.png?size=30px)](https://github.com/Kev-Roche) | tools
3435

3536
[//]: # (end addons)
3637

impersonate_login/README.rst

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Impersonate Login
77
!! This file is generated by oca-gen-addon-readme !!
88
!! changes will be overwritten. !!
99
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10-
!! source digest: sha256:1fca331cbc5f2dcb804e5612e5669a9ab4998d80f22d46d6683266580f9ca40f
10+
!! source digest: sha256:1c22b5e85d268d1f7b8b3d64d9d2d2acb8b05a9cb3170a33fd4dcdc64fbdbd61
1111
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
1212
1313
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
@@ -35,12 +35,12 @@ clicking on the button "Back to Original User".
3535
To ensure that any abuse of this feature will not go unnoticed, the
3636
following measures are in place:
3737

38-
- In the chatter, it is displayed who is the user that is logged as
39-
another user.
40-
- Mails and messages are sent from the original user.
41-
- Impersonated logins are logged and can be consulted through the
42-
Settings -> Technical menu.
43-
-
38+
- In the chatter, it is displayed who is the user that is logged as
39+
another user.
40+
- Mails and messages are sent from the original user.
41+
- Impersonated logins are logged and can be consulted through the
42+
Settings -> Technical menu.
43+
-
4444

4545
There is an alternative module to allow logins as another user
4646
(auth_admin_passkey), but it does not support these security mechanisms.
@@ -85,10 +85,10 @@ Authors
8585
Contributors
8686
------------
8787

88-
- Kévin Roche <kevin.roche@akretion.com>
89-
- `360ERP <https://www.360erp.com>`__:
88+
- Kévin Roche <kevin.roche@akretion.com>
89+
- `360ERP <https://www.360erp.com>`__:
9090

91-
- Andrea Stirpe
91+
- Andrea Stirpe
9292

9393
Maintainers
9494
-----------

impersonate_login/static/description/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ <h1 class="title">Impersonate Login</h1>
367367
!! This file is generated by oca-gen-addon-readme !!
368368
!! changes will be overwritten. !!
369369
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
370-
!! source digest: sha256:1fca331cbc5f2dcb804e5612e5669a9ab4998d80f22d46d6683266580f9ca40f
370+
!! source digest: sha256:1c22b5e85d268d1f7b8b3d64d9d2d2acb8b05a9cb3170a33fd4dcdc64fbdbd61
371371
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
372372
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/server-auth/tree/18.0/impersonate_login"><img alt="OCA/server-auth" src="https://img.shields.io/badge/github-OCA%2Fserver--auth-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/server-auth-18-0/server-auth-18-0-impersonate_login"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/server-auth&amp;target_branch=18.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
373373
<p>This module allows one user (for example, a member of the support team)

setup/_metapackage/pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "odoo-addons-oca-server-auth"
3-
version = "18.0.20250303.0"
3+
version = "18.0.20250405.0"
44
dependencies = [
55
"odoo-addon-auth_admin_passkey==18.0.*",
66
"odoo-addon-auth_api_key==18.0.*",
@@ -12,6 +12,7 @@ dependencies = [
1212
"odoo-addon-auth_session_timeout==18.0.*",
1313
"odoo-addon-base_user_empty_password==18.0.*",
1414
"odoo-addon-base_user_show_email==18.0.*",
15+
"odoo-addon-impersonate_login==18.0.*",
1516
]
1617
classifiers=[
1718
"Programming Language :: Python",

0 commit comments

Comments
 (0)