2018-01-16 06:58:15 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2018-01-16 11:34:37 +01:00
|
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
'name': 'In-App Purchases',
|
2018-01-16 12:05:52 +01:00
|
|
|
'author' : 'Odoo S.A',
|
2018-01-16 06:58:15 +01:00
|
|
|
'category': 'Tools',
|
|
|
|
'summary': 'Basic models and helpers to support In-App purchases.',
|
|
|
|
'description': """
|
2018-01-16 11:34:37 +01:00
|
|
|
This module provides standard tools (account model, context manager and helpers) to support In-App purchases inside Odoo, Flectra.
|
2018-01-16 06:58:15 +01:00
|
|
|
""",
|
|
|
|
'depends': ['web'],
|
|
|
|
'data': [
|
|
|
|
'security/ir.model.access.csv',
|
|
|
|
'security/ir_rule.xml',
|
|
|
|
'views/assets.xml',
|
|
|
|
'views/iap_views.xml',
|
|
|
|
],
|
|
|
|
'qweb': [
|
|
|
|
'static/src/xml/iap_templates.xml',
|
|
|
|
],
|
2018-01-16 12:05:52 +01:00
|
|
|
'auto_install': False,
|
2018-01-16 06:58:15 +01:00
|
|
|
}
|