1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/social_crm/__manifest__.py
2024-12-10 09:04:09 +07:00

28 lines
976 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Leads statistics and generation on social',
'category': 'Hidden',
'version': '1.0',
'summary': 'Add crm UTM info on social',
'description': """UTM and posts on crm""",
'depends': ['social', 'crm'],
'data': [
'security/ir.model.access.csv',
'data/social_crm_data.xml',
'data/social_post_to_lead_templates.xml',
'views/social_post_views.xml',
'wizard/social_post_to_lead_views.xml',
],
'auto_install': True,
'assets': {
'web.assets_backend': [
('after', 'social/static/src/js/stream_post_comment.js', 'social_crm/static/src/js/stream_post_comment.js'),
('after', 'social/static/src/js/stream_post_comments.js', 'social_crm/static/src/js/stream_post_comments.js'),
'social_crm/static/src/xml/**/*',
],
},
'license': 'OEEL-1',
}