-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy path__manifest__.py
More file actions
54 lines (53 loc) · 1.97 KB
/
__manifest__.py
File metadata and controls
54 lines (53 loc) · 1.97 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# SPDX-FileCopyrightText: 2025 Coop IT Easy SC
#
# SPDX-License-Identifier: AGPL-3.0-or-later
{
"name": "Volunteer",
"summary": """
Generate and manage shifts for volunteers.""",
"version": "16.0.0.7.0",
"category": "Volunteer management",
"website": "https://github.com/beescoop/Obeesdoo",
"author": "Coop IT Easy SC",
"maintainers": ["aydrpm", "remytms"],
"license": "AGPL-3",
"application": True,
"depends": ["mail"],
"data": [
"data/volunteer_shift_stage_data.xml",
"security/volunteer_security.xml",
"security/ir.model.access.csv",
"views/volunteer_volunteer_views.xml",
"views/volunteer_volunteer_kanban_views.xml",
"views/volunteer_shift_views.xml",
"views/volunteer_shift_generator_views.xml",
"views/volunteer_shift_kanban_views.xml",
"views/volunteer_shift_participation_views.xml",
"views/volunteer_shift_generator_kanban_views.xml",
"views/volunteer_shift_subscription_views.xml",
"views/volunteer_shift_category_views.xml",
"views/volunteer_shift_type_views.xml",
"views/volunteer_shift_tag_views.xml",
"views/volunteer_skill_view.xml",
"views/volunteer_skill_category_view.xml",
"views/volunteer_menu.xml",
"views/res_config_settings_views.xml",
],
"demo": [
"demo/volunteer_shift_category_demo.xml",
"demo/volunteer_shift_type_demo.xml",
"demo/volunteer_shift_tag_demo.xml",
"demo/volunteer_skill_category_demo.xml",
"demo/volunteer_skill_demo.xml",
"demo/volunteer_volunteer_demo.xml",
"demo/volunteer_shift_recurrent_generator_demo.xml",
"demo/volunteer_shift_recurrent_subscription_demo.xml",
"demo/volunteer_shift_demo.xml",
"demo/volunteer_shift_participation_demo.xml",
],
"assets": {
"web.assets_backend": [
"volunteer/static/src/scss/volunteer_shift.scss",
],
},
}