-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy path__manifest__.py
28 lines (28 loc) · 999 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
# Part of OpenG2P Registry. See LICENSE file for full copyright and licensing details.
{
"name": "OpenG2P Social Registry: Dashboard",
"category": "G2P",
"version": "17.0.0.0.0",
"sequence": 1,
"author": "OpenG2P",
"website": "https://openg2p.org",
"license": "LGPL-3",
"depends": ["g2p_social_registry"],
"external_dependencies": {},
"data": ["data/cron_job.xml", "views/menu.xml"],
"assets": {
"web.assets_backend": [
"g2p_social_registry_dashboard/static/src/components/chart/**/*",
"g2p_social_registry_dashboard/static/src/components/kpi/**/*",
"g2p_social_registry_dashboard/static/src/js/dashboard.js",
"g2p_social_registry_dashboard/static/src/xml/dashboard.xml",
],
},
"demo": [],
"images": [],
"application": True,
"installable": True,
"auto_install": False,
"post_init_hook": "init_materialized_view",
"uninstall_hook": "drop_materialized_view",
}