-
-
Notifications
You must be signed in to change notification settings - Fork 560
Expand file tree
/
Copy path__manifest__.py
More file actions
21 lines (20 loc) · 685 Bytes
/
__manifest__.py
File metadata and controls
21 lines (20 loc) · 685 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright 2024 ACSONE SA/NV,Odoo Community Association (OCA)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
{
"name": "Queue Job Web Notify",
"summary": """
This module allows to display a notification to the related user of a
failed job. It uses the web_notify notification feature.""",
"version": "15.0.1.0.0",
"author": "ACSONE SA/NV,Odoo Community Association (OCA)",
"website": "https://github.com/OCA/queue",
"license": "AGPL-3",
"category": "Generic Modules",
"depends": [
# OCA/queue
"queue_job",
# OCA/web
"web_notify",
],
"data": ["views/queue_job_function.xml"],
}