1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
"name": "Website Jitsi",
'category': 'Hidden',
'version': '1.0',
"summary": "Create Jitsi room on website.",
'website': 'https://www.odoo.com/page/events',
"description": "Create Jitsi room on website.",
"depends": [
"website"
],
"data": [
'views/assets.xml',
'views/chat_room_templates.xml',
'views/chat_room_views.xml',
'views/res_config_settings.xml',
'security/ir.model.access.csv',
],
'application': False,
'license': 'LGPL-3',
}
|