# -*- coding: utf-8 -*- # Part of Odoo. See LICENSE file for full copyright and licensing details. { 'name': 'Product Availability Notifications', 'category': 'Website/Website', 'summary': 'Notify the user when a product is back in stock', 'description': """ Allow the user to select if he wants to receive email notifications when a product of his wishlist gets back in stock. """, 'depends': [ 'website_sale_stock', 'website_sale_wishlist', ], 'data': [ 'views/website_sale_stock_wishlist_templates.xml', ], 'assets': { 'web.assets_frontend': [ 'website_sale_stock_wishlist/static/src/**/*', ], 'web.assets_tests': [ 'website_sale_stock_wishlist/static/tests/tours/website_sale_stock_wishlist_stock_notification.js', ], }, 'auto_install': True, 'license': 'LGPL-3', }