mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
* Initial commit * Initial commit * [ADD] Tests * [FIX] Dependencies * [REM] Controller tests * [FIX] Removed unnecessary incompatibility warning * [FIX] Hyperlink to issues * [ADD] Tests * [FIX] Tests * [?] Testing test problem * [?] Testing test problem * [?] Testing test problem * [ADD] web_chatter_paste Initial commit Initial commit [ADD] Tests [FIX] Dependencies [REM] Controller tests [FIX] Removed unnecessary incompatibility warning [FIX] Hyperlink to issues [ADD] Tests [FIX] Tests [?] Testing test problem [?] Testing test problem [?] Testing test problem * Testing problem * Testing problem * Testing problem * [ADD] Mock for http.request * [FIX] Use patch to mock
25 lines
620 B
Python
25 lines
620 B
Python
# -*- coding: utf-8 -*-
|
|
# Copyright 2017 Onestein (<http://www.onestein.eu>)
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
|
|
{
|
|
'name': 'Chatter Paste',
|
|
'summary': """
|
|
Paste images and drop files into the chatter and upload them directly
|
|
""",
|
|
'version': '10.0.1.0.0',
|
|
'category': 'Web',
|
|
'author': 'Onestein,Odoo Community Association (OCA)',
|
|
'website': 'http://www.onestein.eu',
|
|
'license': 'AGPL-3',
|
|
'depends': [
|
|
'base',
|
|
'web'
|
|
],
|
|
'data': [
|
|
'templates/assets.xml'
|
|
],
|
|
'installable': True,
|
|
'application': False,
|
|
}
|