24 lines
686 B
Python
24 lines
686 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||
|
|
||
|
{
|
||
|
'name': 'Google Calendar',
|
||
|
'version': '1.0',
|
||
|
'category': 'Extra Tools',
|
||
|
'description': "",
|
||
|
'website': 'https://www.odoo.com/page/crm',
|
||
|
'depends': ['google_account', 'calendar'],
|
||
|
'qweb': ['static/src/xml/*.xml'],
|
||
|
'data': [
|
||
|
'data/google_calendar_data.xml',
|
||
|
'data/google_calendar_data.xml',
|
||
|
'security/ir.model.access.csv',
|
||
|
'views/res_config_settings_views.xml',
|
||
|
'views/res_users_views.xml',
|
||
|
'views/google_calendar_templates.xml',
|
||
|
],
|
||
|
'demo': [],
|
||
|
'installable': True,
|
||
|
'auto_install': False,
|
||
|
}
|