blob: 610c1a103d31c11753b649376a4ce47e9cf4bfa0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Link Tracker',
'category': 'Marketing',
'description': """
Shorten URLs and use them to track clicks and UTMs
""",
'version': '1.1',
'depends': ['utm', 'mail'],
'data': [
'views/link_tracker_views.xml',
'views/utm_campaign_views.xml',
'security/ir.model.access.csv',
],
'license': 'LGPL-3',
}
|