summaryrefslogtreecommitdiff
path: root/auditlog/__manifest__.py
diff options
context:
space:
mode:
authorstephanchrst <stephanchrst@gmail.com>2023-02-06 15:29:55 +0700
committerstephanchrst <stephanchrst@gmail.com>2023-02-06 15:29:55 +0700
commit7cfed1e19f2e340d966ed2068176d21a0e8e9834 (patch)
treeec9077cb4f89d23378ef09f9da0adb7135548081 /auditlog/__manifest__.py
parent4b3b2d8b1a9a7a72fbe3d623e93dea3802ef0e56 (diff)
add audit log
Diffstat (limited to 'auditlog/__manifest__.py')
-rw-r--r--auditlog/__manifest__.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/auditlog/__manifest__.py b/auditlog/__manifest__.py
new file mode 100644
index 0000000..e673622
--- /dev/null
+++ b/auditlog/__manifest__.py
@@ -0,0 +1,21 @@
+# Copyright 2015 ABF OSIELL <https://osiell.com>
+# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
+
+{
+ "name": "Audit Log",
+ "version": "14.0.2.0.1",
+ "author": "ABF OSIELL,Odoo Community Association (OCA)",
+ "license": "AGPL-3",
+ "website": "https://github.com/OCA/server-tools",
+ "category": "Tools",
+ "depends": ["base"],
+ "data": [
+ "security/ir.model.access.csv",
+ "data/ir_cron.xml",
+ "views/auditlog_view.xml",
+ "views/http_session_view.xml",
+ "views/http_request_view.xml",
+ ],
+ "application": True,
+ "installable": True,
+}