-
-
Notifications
You must be signed in to change notification settings - Fork 462
/
__manifest__.py
33 lines (32 loc) · 974 Bytes
/
__manifest__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Copyright 2019 Creu Blanca
# Copyright 2023 ForgeFlow S.L. (http://www.forgeflow.com)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
{
"name": "Job Queue Batch",
"version": "16.0.1.0.1",
"author": "Creu Blanca,Odoo Community Association (OCA)",
"website": "https://github.com/OCA/queue",
"license": "AGPL-3",
"category": "Generic Modules",
"depends": [
"queue_job",
],
"data": [
# data
"data/queue_job_channel_data.xml",
"data/queue_job_function_data.xml",
# security
"security/security.xml",
"security/ir.model.access.csv",
# views
"views/queue_job_views.xml",
"views/queue_job_batch_views.xml",
],
"assets": {
"web.assets_backend": [
"queue_job_batch/static/src/js/*.js",
"queue_job_batch/static/src/scss/systray.scss",
"queue_job_batch/static/src/xml/*.xml",
],
},
}