mirror of
https://github.com/OCA/knowledge.git
synced 2025-07-14 01:41:26 -06:00

Remove 'user_id' key in a dictionary prepared to create an 'ir.attachment' object, because it's an unknown field for that model
24 lines
622 B
Python
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,
|
|
}
|