__manifest__.py 460 B

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