-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path__manifest__.py
More file actions
35 lines (34 loc) · 1.18 KB
/
__manifest__.py
File metadata and controls
35 lines (34 loc) · 1.18 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
# pylint: disable=pointless-statement
# Part of OpenSPP. See LICENSE file for full copyright and licensing details.
{
"name": "OpenSPP CEL Event Data Integration",
"category": "OpenSPP",
"version": "19.0.2.0.0",
"sequence": 1,
"author": "OpenSPP.org",
"website": "https://github.com/OpenSPP/OpenSPP2",
"license": "LGPL-3",
"development_status": "Production/Stable",
"maintainers": ["jeremi", "gonzalesedwin1123", "emjay0921"],
"depends": [
"spp_cel_domain",
"spp_event_data",
"spp_studio", # For CEL variable form extensions
],
"data": [
# Security
"security/ir.model.access.csv",
# Views
"views/cel_variable_event_agg_views.xml",
# Note: cel_profiles.yaml is loaded programmatically by spp.cel.registry
# (not listed here because Odoo can't load YAML files directly)
],
"assets": {},
"demo": [],
"images": [],
"application": False,
"installable": True,
"auto_install": ["spp_cel_domain", "spp_event_data", "spp_studio"],
"post_init_hook": "post_init_hook",
"summary": "Integrate event data with CEL expressions for eligibility and entitlement rules",
}