knowledge/document_url/__openerp__.py
ernestotejeda f856807611 document_url: Fix inclusion of unknown field 'user_id' (#165)
Remove 'user_id' key in a dictionary prepared to
create an 'ir.attachment' object, because it's
an unknown field for that model
2018-05-01 04:01:53 +02:00

24 lines
622 B
Python

# -*- coding: utf-8 -*-
# © 2014 Serv. Tecnol. Avanzados (http://www.serviciosbaeza.com)
# Pedro M. Baeza <pedro.baeza@serviciosbaeza.com>
# © 2016 ACSONE SA/NV (<http://acsone.eu>)
{
'name': 'URL attachment',
'version': '9.0.2.0.2',
'category': 'Tools',
'author': "Tecnativa,"
"Odoo Community Association (OCA)",
'website': 'https://www.tecnativa.com',
'license': 'AGPL-3',
'depends': [
'document',
],
'data': [
'view/document_url_view.xml',
],
'qweb': [
'static/src/xml/url.xml',
],
'installable': True,
}