New module web_notify

This technical module allows you to send instant notification messages from the server to the user in live.
This commit is contained in:
Laurent Mignon (ACSONE)
2016-09-20 17:56:56 +02:00
committed by Jairo Llopis
parent 08c16707ed
commit f916f2c9f1
8 changed files with 196 additions and 0 deletions

22
web_notify/__openerp__.py Normal file
View File

@@ -0,0 +1,22 @@
# -*- coding: utf-8 -*-
# Copyright 2016 ACSONE SA/NV
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
'name': 'Web Notify',
'summary': """
Send notification messages to user""",
'version': '9.0.1.0.0',
'license': 'AGPL-3',
'author': 'ACSONE SA/NV,Odoo Community Association (OCA)',
'website': 'https://acsone.eu/',
'depends': [
'web',
'bus',
],
'data': [
'views/web_notify.xml'
],
'demo': [
],
}