-
-
Notifications
You must be signed in to change notification settings - Fork 119
/
__manifest__.py
32 lines (31 loc) · 968 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
# Copyright 2017 Odoo S.A.
# Copyright 2018 ForgeFlow, S.L.
# License LGPL-3 - See http://www.gnu.org/licenses/lgpl-3.0.html
{
"name": "HR Attendance Reason",
"version": "17.0.1.1.0",
"category": "Human Resources",
"website": "https://github.com/OCA/hr-attendance",
"author": "Odoo S.A., Tecnativa, Odoo Community Association (OCA)",
"license": "LGPL-3",
"installable": True,
"depends": ["hr_attendance"],
"data": [
"security/ir.model.access.csv",
"security/security.xml",
"views/hr_attendance_reason_view.xml",
"views/hr_attendance_view.xml",
"views/res_config_settings_view.xml",
],
"demo": [
"demo/hr_attendance_reason_demo.xml",
],
"assets": {
"web.assets_backend": [
"hr_attendance_reason/static/src/**/*",
],
"hr_attendance.assets_public_attendance": [
"hr_attendance_reason/static/src/**/*",
],
},
}