blob: ce88288f4629156e5e5d7544ea4a27a4e9c5fd94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Twitter Snippet',
'category': 'Website/Website',
'summary': 'Twitter scroller snippet in website',
'version': '1.0',
'description': """
This module adds a Twitter scroller building block to the website builder, so that you can display Twitter feeds on any page of your website.
""",
'depends': ['website'],
'data': [
'security/ir.model.access.csv',
'data/website_twitter_data.xml',
'views/res_config_settings_views.xml',
'views/website_twitter_snippet_templates.xml'
],
'installable': True,
'license': 'LGPL-3',
}
|