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': 'Website Wishlist',
|
|
|
|
'description': 'Let returning shoppers save products in a wishlist',
|
|
|
|
'author': 'Odoo SA',
|
2018-01-16 11:34:37 +01:00
|
|
|
'website': 'https://flectrahq.com',
|
2018-01-16 06:58:15 +01:00
|
|
|
'category': 'Website',
|
|
|
|
'version': '1.0',
|
|
|
|
'depends': ['website_sale'],
|
|
|
|
'data': [
|
|
|
|
'security/website_sale_wishlist_security.xml',
|
|
|
|
'security/ir.model.access.csv',
|
|
|
|
'views/website_sale_wishlist_template.xml',
|
|
|
|
],
|
|
|
|
'installable': True,
|
|
|
|
}
|