odoo/packs/odoo.v18/base/user_audit/__manifest__.py

57 lines
2.1 KiB
Python
Raw Normal View History

# -*- coding: utf-8 -*-
#############################################################################
#
# Cybrosys Technologies Pvt. Ltd.
#
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>)
#
# You can modify it under the terms of the GNU LESSER
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
#
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
# (LGPL v3) along with this program.
# If not, see <http://www.gnu.org/licenses/>.
#
#############################################################################
{
'name': "User Activity Audit",
"version": "18.0.1.0.0",
"category": "Extra Tools",
"summary": "Tracking user's create, write, read activities",
"description": "This module helps you to track user's all type of "
"activities like create, write, read etc on various models "
"and records in all users",
'author': 'Cybrosys Techno Solutions',
'company': 'Cybrosys Techno Solutions',
'maintainer': 'Cybrosys Techno Solutions',
'website': "https://www.cybrosys.com",
'depends': ['web'],
'data': [
'security/user_audit_groups.xml',
'security/ir.model.access.csv',
'security/user_audit_security.xml',
'data/user_audit_data.xml',
'views/user_audit_log_views.xml',
'views/user_audit_views.xml',
'wizard/clear_user_log_views.xml',
'views/user_audit_menus.xml'
],
'assets':
{
'web.assets_backend': [
'user_audit/static/src/js/list_controller.js',
'user_audit/static/src/js/form_controller.js'
]},
'images': ['static/description/banner.jpg'],
'license': 'LGPL-3',
'installable': True,
'auto_install': False,
'application': True
}