Skip to content

Commit 6bb8b81

Browse files
committed
Merge PR OCA#850 into 18.0
Signed-off-by pedrobaeza
2 parents 35b0b6e + 9006c98 commit 6bb8b81

12 files changed

Lines changed: 722 additions & 0 deletions

File tree

user_log_view/README.rst

Lines changed: 98 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
=================
2+
User's Log Viewer
3+
=================
4+
5+
..
6+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
7+
!! This file is generated by oca-gen-addon-readme !!
8+
!! changes will be overwritten. !!
9+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10+
!! source digest: sha256:41582a56f8deb42c9cdd0873300d9ef7116dccde5b22414dcfde2cd9597fb934
11+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12+
13+
.. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png
14+
:target: https://odoo-community.org/page/development-status
15+
:alt: Production/Stable
16+
.. |badge2| image:: https://img.shields.io/badge/licence-LGPL--3-blue.png
17+
:target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html
18+
:alt: License: LGPL-3
19+
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fserver--auth-lightgray.png?logo=github
20+
:target: https://github.com/OCA/server-auth/tree/18.0/user_log_view
21+
:alt: OCA/server-auth
22+
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
23+
:target: https://translation.odoo-community.org/projects/server-auth-18-0/server-auth-18-0-user_log_view
24+
:alt: Translate me on Weblate
25+
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
26+
:target: https://runboat.odoo-community.org/builds?repo=OCA/server-auth&target_branch=18.0
27+
:alt: Try me on Runboat
28+
29+
|badge1| |badge2| |badge3| |badge4| |badge5|
30+
31+
This module adds a smart button on user's form to display authentication
32+
logs.
33+
34+
**Table of contents**
35+
36+
.. contents::
37+
:local:
38+
39+
Usage
40+
=====
41+
42+
To use this module, you need to:
43+
44+
1) Go to Settings
45+
2) Go to Users & Companies
46+
3) Choose the User whose logs you need to see and go to Authentication
47+
logs
48+
4) You will see a list of authentications for a specific user
49+
50+
Bug Tracker
51+
===========
52+
53+
Bugs are tracked on `GitHub Issues <https://github.com/OCA/server-auth/issues>`_.
54+
In case of trouble, please check there if your issue has already been reported.
55+
If you spotted it first, help us to smash it by providing a detailed and welcomed
56+
`feedback <https://github.com/OCA/server-auth/issues/new?body=module:%20user_log_view%0Aversion:%2018.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
57+
58+
Do not contact contributors directly about support or help with technical issues.
59+
60+
Credits
61+
=======
62+
63+
Authors
64+
-------
65+
66+
* IT-Projects LLC
67+
68+
Contributors
69+
------------
70+
71+
- Denis Mudarisov <mudarisov@it-projects.info>
72+
(https://www.it-projects.info/)
73+
- Chandresh Thakkar <cthakkar@opensourceintegrators.com>
74+
75+
Maintainers
76+
-----------
77+
78+
This module is maintained by the OCA.
79+
80+
.. image:: https://odoo-community.org/logo.png
81+
:alt: Odoo Community Association
82+
:target: https://odoo-community.org
83+
84+
OCA, or the Odoo Community Association, is a nonprofit organization whose
85+
mission is to support the collaborative development of Odoo features and
86+
promote its widespread use.
87+
88+
.. |maintainer-trojikman| image:: https://github.com/trojikman.png?size=40px
89+
:target: https://github.com/trojikman
90+
:alt: trojikman
91+
92+
Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
93+
94+
|maintainer-trojikman|
95+
96+
This module is part of the `OCA/server-auth <https://github.com/OCA/server-auth/tree/18.0/user_log_view>`_ project on GitHub.
97+
98+
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

user_log_view/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html).

user_log_view/__manifest__.py

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Copyright 2019 Denis Mudarisov (IT-Projects LLC)
2+
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl).
3+
{
4+
"name": "User's Log Viewer",
5+
"summary": "Allow to see user's actions log",
6+
"version": "18.0.1.0.0",
7+
"development_status": "Production/Stable",
8+
"category": "Extra Tools",
9+
"website": "https://github.com/OCA/server-auth",
10+
"author": "IT-Projects LLC, Odoo Community Association (OCA)",
11+
"maintainers": ["trojikman"],
12+
"license": "LGPL-3",
13+
"application": False,
14+
"installable": True,
15+
"depends": [
16+
"base",
17+
],
18+
"data": [
19+
"views/res_users_views.xml",
20+
],
21+
}

user_log_view/i18n/it.po

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Translation of Odoo Server.
2+
# This file contains the translation of the following modules:
3+
# * user_log_view
4+
#
5+
msgid ""
6+
msgstr ""
7+
"Project-Id-Version: Odoo Server 16.0\n"
8+
"Report-Msgid-Bugs-To: \n"
9+
"PO-Revision-Date: 2024-01-03 14:33+0000\n"
10+
"Last-Translator: mymage <stefano.consolaro@mymage.it>\n"
11+
"Language-Team: none\n"
12+
"Language: it\n"
13+
"MIME-Version: 1.0\n"
14+
"Content-Type: text/plain; charset=UTF-8\n"
15+
"Content-Transfer-Encoding: \n"
16+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
17+
"X-Generator: Weblate 4.17\n"
18+
19+
#. module: user_log_view
20+
#: model:ir.actions.act_window,name:user_log_view.action_user_log
21+
#: model_terms:ir.ui.view,arch_db:user_log_view.res_users_view_form
22+
msgid "Authentication logs"
23+
msgstr "Registri autenticazione"
24+
25+
#. module: user_log_view
26+
#: model_terms:ir.ui.view,arch_db:user_log_view.res_users_log_view_search
27+
msgid "Date"
28+
msgstr "Data"
29+
30+
#. module: user_log_view
31+
#: model_terms:ir.ui.view,arch_db:user_log_view.res_users_log_view_search
32+
msgid "Group By"
33+
msgstr "Raggruppa per"
34+
35+
#. module: user_log_view
36+
#: model_terms:ir.ui.view,arch_db:user_log_view.res_users_log_view_search
37+
msgid "Test Search"
38+
msgstr "Testa ricerca"
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Translation of Odoo Server.
2+
# This file contains the translation of the following modules:
3+
# * user_log_view
4+
#
5+
msgid ""
6+
msgstr ""
7+
"Project-Id-Version: Odoo Server 17.0\n"
8+
"Report-Msgid-Bugs-To: \n"
9+
"Last-Translator: \n"
10+
"Language-Team: \n"
11+
"MIME-Version: 1.0\n"
12+
"Content-Type: text/plain; charset=UTF-8\n"
13+
"Content-Transfer-Encoding: \n"
14+
"Plural-Forms: \n"
15+
16+
#. module: user_log_view
17+
#: model:ir.actions.act_window,name:user_log_view.action_user_log
18+
#: model_terms:ir.ui.view,arch_db:user_log_view.res_users_view_form
19+
msgid "Authentication logs"
20+
msgstr ""
21+
22+
#. module: user_log_view
23+
#: model_terms:ir.ui.view,arch_db:user_log_view.res_users_log_view_search
24+
msgid "Date"
25+
msgstr ""
26+
27+
#. module: user_log_view
28+
#: model_terms:ir.ui.view,arch_db:user_log_view.res_users_log_view_search
29+
msgid "Group By"
30+
msgstr ""
31+
32+
#. module: user_log_view
33+
#: model_terms:ir.ui.view,arch_db:user_log_view.res_users_log_view_search
34+
msgid "Test Search"
35+
msgstr ""

user_log_view/pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[build-system]
2+
requires = ["whool"]
3+
build-backend = "whool.buildapi"
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
- Denis Mudarisov \<<mudarisov@it-projects.info>\>
2+
(<https://www.it-projects.info/>)
3+
- Chandresh Thakkar \<<cthakkar@opensourceintegrators.com>\>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
This module adds a smart button on user's form to display authentication
2+
logs.

user_log_view/readme/USAGE.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
To use this module, you need to:
2+
3+
1) Go to Settings
4+
2) Go to Users & Companies
5+
3) Choose the User whose logs you need to see and go to Authentication
6+
logs
7+
4) You will see a list of authentications for a specific user
9.23 KB
Loading

0 commit comments

Comments
 (0)