forked from sousou15/helpdesk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
33 lines (33 loc) · 1.08 KB
/
__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 <YEAR(S)> <AUTHOR(S)>
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
{
"name": "Helpdesk Youssef",
"summary": "Helpdesk my first module",
"version": "11.0.1.0.0",
# see https://odoo-community.org/page/development-status
"category": "Helpdesk",
"website": "https://github.com/OCA/helpdesk",
"author": "Youssef, Odoo Community Association (OCA)",
# see https://odoo-community.org/page/maintainer-role for a description of the maintainer role and responsibilities
"maintainers": ["sousou15"],
"license": "AGPL-3",
"application": True,
"installable": True,
"depends": [
"base",
"mail",
],
"data": [
"security/helpdesk_security.xml",
"security/ir.model.access.csv",
"wizards/new_ticket_from_tag_views.xml",
"views/helpdesk_ticket_views.xml",
"views/helpdesk_tag_views.xml",
"views/helpdesk_action_views.xml",
"data/helpdesk_data.xml",
"reports/helpdesk_ticket_templates.xml"
],
"demo": [
"data/helpdesk_demo.xml",
]
}