mirror of
https://gitlab.com/flectra-community/reporting-engine.git
synced 2024-11-15 02:32:05 +00:00
31 lines
1003 B
Python
31 lines
1003 B
Python
|
# Copyright (C) 2017 - Today: GRAP (http://www.grap.coop)
|
||
|
# @author: Sylvain LE GAL (https://twitter.com/legalsylvain)
|
||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||
|
|
||
|
{
|
||
|
"name": "SQL Request Abstract",
|
||
|
"version": "3.0.1.0.1",
|
||
|
"author": "GRAP,Akretion,Odoo Community Association (OCA)",
|
||
|
"maintainers": ["legalsylvain"],
|
||
|
"website": "https://gitlab.com/flectra-community/reporting-engine",
|
||
|
"license": "AGPL-3",
|
||
|
"category": "Tools",
|
||
|
"summary": "Abstract Model to manage SQL Requests",
|
||
|
"depends": ["mail"],
|
||
|
"data": [
|
||
|
"security/ir_module_category.xml",
|
||
|
"security/res_groups.xml",
|
||
|
"security/ir.model.access.csv",
|
||
|
"views/view_sql_request_mixin.xml",
|
||
|
],
|
||
|
"assets": {
|
||
|
"web._assets_core": [
|
||
|
"sql_request_abstract/static/src/js/code_editor.esm.js",
|
||
|
],
|
||
|
"web.ace_lib": [
|
||
|
"sql_request_abstract/static/lib/ace/mode-pgsql.js",
|
||
|
],
|
||
|
},
|
||
|
"installable": True,
|
||
|
}
|