odoo14-addon-web-notify-channel-message 14.0.1.0.1.dev8__py3-none-any.whl → 14.0.1.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +1,7 @@
1
+ .. image:: https://odoo-community.org/readme-banner-image
2
+ :target: https://odoo-community.org/get-involved?utm_source=readme
3
+ :alt: Odoo Community Association
4
+
1
5
  ==========================
2
6
  Web Notify Channel Message
3
7
  ==========================
@@ -7,13 +11,13 @@ Web Notify Channel Message
7
11
  !! This file is generated by oca-gen-addon-readme !!
8
12
  !! changes will be overwritten. !!
9
13
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10
- !! source digest: sha256:8ad6448c5d7b8c1d80778b60629f0fd0b23b23c5a2465428963a4f6ff0b6e290
14
+ !! source digest: sha256:342acae1cdc49d69c1cdd35ab54b77bb146d09c5bf986f8f0931a3b4343e4858
11
15
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12
16
 
13
17
  .. |badge1| image:: https://img.shields.io/badge/maturity-Alpha-red.png
14
18
  :target: https://odoo-community.org/page/development-status
15
19
  :alt: Alpha
16
- .. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
20
+ .. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
17
21
  :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
18
22
  :alt: License: AGPL-3
19
23
  .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github
@@ -6,7 +6,7 @@
6
6
  "name": "Web Notify Channel Message",
7
7
  "summary": """
8
8
  Send an instant notification to channel users when a new message is posted""",
9
- "version": "14.0.1.0.0",
9
+ "version": "14.0.1.1.0",
10
10
  "license": "AGPL-3",
11
11
  "author": "ForgeFlow, Odoo Community Association (OCA)",
12
12
  "development_status": "Alpha",
@@ -20,19 +20,27 @@ msgstr ""
20
20
 
21
21
  #. module: web_notify_channel_message
22
22
  #: model:ir.model.fields,field_description:web_notify_channel_message.field_mail_channel__display_name
23
+ #: model:ir.model.fields,field_description:web_notify_channel_message.field_res_users__display_name
23
24
  msgid "Display Name"
24
25
  msgstr ""
25
26
 
26
27
  #. module: web_notify_channel_message
27
28
  #: model:ir.model.fields,field_description:web_notify_channel_message.field_mail_channel__id
29
+ #: model:ir.model.fields,field_description:web_notify_channel_message.field_res_users__id
28
30
  msgid "ID"
29
31
  msgstr ""
30
32
 
31
33
  #. module: web_notify_channel_message
32
34
  #: model:ir.model.fields,field_description:web_notify_channel_message.field_mail_channel____last_update
35
+ #: model:ir.model.fields,field_description:web_notify_channel_message.field_res_users____last_update
33
36
  msgid "Last Modified on"
34
37
  msgstr ""
35
38
 
39
+ #. module: web_notify_channel_message
40
+ #: model:ir.model,name:web_notify_channel_message.model_res_users
41
+ msgid "Users"
42
+ msgstr ""
43
+
36
44
  #. module: web_notify_channel_message
37
45
  #: code:addons/web_notify_channel_message/models/mail_channel.py:0
38
46
  #, python-format
@@ -1 +1,2 @@
1
1
  from . import mail_channel
2
+ from . import res_users
@@ -1,5 +1,4 @@
1
- # pylint: disable=missing-docstring
2
- # Copyright 2016 ACSONE SA/NV
1
+ # Copyright 2023 ForgeFlow
3
2
  # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
4
3
 
5
4
  from odoo import _, models
@@ -15,7 +14,7 @@ class MailChannel(models.Model):
15
14
  for user in users:
16
15
  if user in message.author_id.user_ids:
17
16
  continue
18
- user.notify_info(
17
+ user.with_context(_notify_channel_message=True).notify_info(
19
18
  message=_("You have a new message in channel %s") % self.name
20
19
  )
21
20
  return message
@@ -0,0 +1,31 @@
1
+ from odoo import models
2
+
3
+ from odoo.addons.web_notify.models.res_users import DEFAULT, DEFAULT_MESSAGE
4
+
5
+
6
+ class ResUsers(models.Model):
7
+ _inherit = "res.users"
8
+
9
+ def _notify_channel(
10
+ self,
11
+ type_message=DEFAULT,
12
+ message=DEFAULT_MESSAGE,
13
+ title=None,
14
+ sticky=False,
15
+ params=None,
16
+ ):
17
+ if self.env.context.get("_notify_channel_message", False):
18
+ return super(ResUsers, self.sudo())._notify_channel(
19
+ type_message=type_message,
20
+ message=message,
21
+ title=title,
22
+ sticky=sticky,
23
+ params=params,
24
+ )
25
+ return super(ResUsers, self)._notify_channel(
26
+ type_message=type_message,
27
+ message=message,
28
+ title=title,
29
+ sticky=sticky,
30
+ params=params,
31
+ )
@@ -1,18 +1,18 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
1
  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
2
  <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
3
  <head>
5
4
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6
5
  <meta name="generator" content="Docutils: https://docutils.sourceforge.io/" />
7
- <title>Web Notify Channel Message</title>
6
+ <title>README.rst</title>
8
7
  <style type="text/css">
9
8
 
10
9
  /*
11
10
  :Author: David Goodger (goodger@python.org)
12
- :Id: $Id: html4css1.css 8954 2022-01-20 10:10:25Z milde $
11
+ :Id: $Id: html4css1.css 9511 2024-01-13 09:50:07Z milde $
13
12
  :Copyright: This stylesheet has been placed in the public domain.
14
13
 
15
14
  Default cascading style sheet for the HTML output of Docutils.
15
+ Despite the name, some widely supported CSS2 features are used.
16
16
 
17
17
  See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to
18
18
  customize this style sheet.
@@ -275,7 +275,7 @@ pre.literal-block, pre.doctest-block, pre.math, pre.code {
275
275
  margin-left: 2em ;
276
276
  margin-right: 2em }
277
277
 
278
- pre.code .ln { color: grey; } /* line numbers */
278
+ pre.code .ln { color: gray; } /* line numbers */
279
279
  pre.code, code { background-color: #eeeeee }
280
280
  pre.code .comment, code .comment { color: #5C6576 }
281
281
  pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
@@ -301,7 +301,7 @@ span.option {
301
301
  span.pre {
302
302
  white-space: pre }
303
303
 
304
- span.problematic {
304
+ span.problematic, pre.problematic {
305
305
  color: red }
306
306
 
307
307
  span.section-subtitle {
@@ -360,16 +360,21 @@ ul.auto-toc {
360
360
  </style>
361
361
  </head>
362
362
  <body>
363
- <div class="document" id="web-notify-channel-message">
364
- <h1 class="title">Web Notify Channel Message</h1>
363
+ <div class="document">
365
364
 
365
+
366
+ <a class="reference external image-reference" href="https://odoo-community.org/get-involved?utm_source=readme">
367
+ <img alt="Odoo Community Association" src="https://odoo-community.org/readme-banner-image" />
368
+ </a>
369
+ <div class="section" id="web-notify-channel-message">
370
+ <h1>Web Notify Channel Message</h1>
366
371
  <!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
367
372
  !! This file is generated by oca-gen-addon-readme !!
368
373
  !! changes will be overwritten. !!
369
374
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
370
- !! source digest: sha256:8ad6448c5d7b8c1d80778b60629f0fd0b23b23c5a2465428963a4f6ff0b6e290
375
+ !! source digest: sha256:342acae1cdc49d69c1cdd35ab54b77bb146d09c5bf986f8f0931a3b4343e4858
371
376
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
372
- <p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Alpha" src="https://img.shields.io/badge/maturity-Alpha-red.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/web/tree/14.0/web_notify_channel_message"><img alt="OCA/web" src="https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/web-14-0/web-14-0-web_notify_channel_message"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/web&amp;target_branch=14.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
377
+ <p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Alpha" src="https://img.shields.io/badge/maturity-Alpha-red.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/license-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/web/tree/14.0/web_notify_channel_message"><img alt="OCA/web" src="https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/web-14-0/web-14-0-web_notify_channel_message"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/web&amp;target_branch=14.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
373
378
  <p>This module will send an instant notifications to all users of a channel when a new message has been posted.</p>
374
379
  <div class="admonition important">
375
380
  <p class="first admonition-title">Important</p>
@@ -390,7 +395,7 @@ Only for development or testing purpose, do not use in production.
390
395
  </ul>
391
396
  </div>
392
397
  <div class="section" id="bug-tracker">
393
- <h1><a class="toc-backref" href="#toc-entry-1">Bug Tracker</a></h1>
398
+ <h2><a class="toc-backref" href="#toc-entry-1">Bug Tracker</a></h2>
394
399
  <p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/web/issues">GitHub Issues</a>.
395
400
  In case of trouble, please check there if your issue has already been reported.
396
401
  If you spotted it first, help us to smash it by providing a detailed and welcomed
@@ -398,15 +403,15 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
398
403
  <p>Do not contact contributors directly about support or help with technical issues.</p>
399
404
  </div>
400
405
  <div class="section" id="credits">
401
- <h1><a class="toc-backref" href="#toc-entry-2">Credits</a></h1>
406
+ <h2><a class="toc-backref" href="#toc-entry-2">Credits</a></h2>
402
407
  <div class="section" id="authors">
403
- <h2><a class="toc-backref" href="#toc-entry-3">Authors</a></h2>
408
+ <h3><a class="toc-backref" href="#toc-entry-3">Authors</a></h3>
404
409
  <ul class="simple">
405
410
  <li>ForgeFlow</li>
406
411
  </ul>
407
412
  </div>
408
413
  <div class="section" id="contributors">
409
- <h2><a class="toc-backref" href="#toc-entry-4">Contributors</a></h2>
414
+ <h3><a class="toc-backref" href="#toc-entry-4">Contributors</a></h3>
410
415
  <ul class="simple">
411
416
  <li>Joan Sisquella &lt;<a class="reference external" href="mailto:joan.sisquella&#64;forgeflow.com">joan.sisquella&#64;forgeflow.com</a>&gt;</li>
412
417
  <li>Thiago Mulero &lt;<a class="reference external" href="mailto:thiago.mulero&#64;forgeflow.com">thiago.mulero&#64;forgeflow.com</a>&gt;</li>
@@ -415,9 +420,11 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
415
420
  </ul>
416
421
  </div>
417
422
  <div class="section" id="maintainers">
418
- <h2><a class="toc-backref" href="#toc-entry-5">Maintainers</a></h2>
423
+ <h3><a class="toc-backref" href="#toc-entry-5">Maintainers</a></h3>
419
424
  <p>This module is maintained by the OCA.</p>
420
- <a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a>
425
+ <a class="reference external image-reference" href="https://odoo-community.org">
426
+ <img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
427
+ </a>
421
428
  <p>OCA, or the Odoo Community Association, is a nonprofit organization whose
422
429
  mission is to support the collaborative development of Odoo features and
423
430
  promote its widespread use.</p>
@@ -426,5 +433,6 @@ promote its widespread use.</p>
426
433
  </div>
427
434
  </div>
428
435
  </div>
436
+ </div>
429
437
  </body>
430
438
  </html>
@@ -0,0 +1 @@
1
+ from . import test_notify_channel_message
@@ -0,0 +1,72 @@
1
+ # Copyright 2023 ForgeFlow S.L. (https://www.forgeflow.com)
2
+ # License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl).
3
+
4
+ from odoo import api
5
+ from odoo.tests import common
6
+
7
+
8
+ class TestWebNotifyChannelMessage(common.SavepointCase):
9
+ @classmethod
10
+ def setUpClass(cls):
11
+ super(TestWebNotifyChannelMessage, cls).setUpClass()
12
+ cls.env.user = cls.env.ref("base.user_admin")
13
+ cls.other_user = cls.env.ref("base.user_demo")
14
+ cls.env = api.Environment(cls.cr, cls.env.user.id, {})
15
+ cls.env.user.tz = False # Make sure there's no timezone in user
16
+ cls.user_internal = cls.env["res.users"].create(
17
+ {
18
+ "name": "Test Internal User",
19
+ "login": "internal_user",
20
+ "password": "internal_user",
21
+ "email": "mark.brown23@example.com",
22
+ }
23
+ )
24
+ cls.channel = cls.env["mail.channel"].create(
25
+ {
26
+ "name": "Test channel",
27
+ "channel_partner_ids": [
28
+ (4, cls.env.user.partner_id.id),
29
+ (4, cls.user_internal.partner_id.id),
30
+ ],
31
+ }
32
+ )
33
+
34
+ def test_01_post_message_admin(self):
35
+ initial_message = (
36
+ self.env["mail.channel"]
37
+ .search([("name", "=", "Test channel")], limit=1)
38
+ .message_ids
39
+ )
40
+ self.assertEqual(len(initial_message), 0)
41
+ self.channel.message_post(
42
+ author_id=self.env.user.partner_id.id,
43
+ body="Hello",
44
+ message_type="notification",
45
+ subtype_xmlid="mail.mt_comment",
46
+ )
47
+ message = (
48
+ self.env["mail.channel"]
49
+ .search([("name", "=", "Test channel")], limit=1)
50
+ .message_ids[0]
51
+ )
52
+ self.assertEqual(len(message), 1)
53
+
54
+ def test_02_post_message_non_admin(self):
55
+ initial_message = (
56
+ self.env["mail.channel"]
57
+ .search([("name", "=", "Test channel")], limit=1)
58
+ .message_ids
59
+ )
60
+ self.assertEqual(len(initial_message), 0)
61
+ self.channel.with_user(self.other_user).message_post(
62
+ author_id=self.other_user.partner_id.id,
63
+ body="Hello",
64
+ message_type="notification",
65
+ subtype_xmlid="mail.mt_comment",
66
+ )
67
+ message = (
68
+ self.env["mail.channel"]
69
+ .search([("name", "=", "Test channel")], limit=1)
70
+ .message_ids[0]
71
+ )
72
+ self.assertEqual(len(message), 1)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: odoo14-addon-web_notify_channel_message
3
- Version: 14.0.1.0.1.dev8
3
+ Version: 14.0.1.1.0
4
4
  Summary: Send an instant notification to channel users when a new message is posted
5
5
  Home-page: https://github.com/OCA/web
6
6
  Author: ForgeFlow, Odoo Community Association (OCA)
@@ -15,6 +15,10 @@ Requires-Python: >=3.6
15
15
  Requires-Dist: odoo14-addon-web-notify
16
16
  Requires-Dist: odoo<14.1dev,>=14.0a
17
17
 
18
+ .. image:: https://odoo-community.org/readme-banner-image
19
+ :target: https://odoo-community.org/get-involved?utm_source=readme
20
+ :alt: Odoo Community Association
21
+
18
22
  ==========================
19
23
  Web Notify Channel Message
20
24
  ==========================
@@ -24,13 +28,13 @@ Web Notify Channel Message
24
28
  !! This file is generated by oca-gen-addon-readme !!
25
29
  !! changes will be overwritten. !!
26
30
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
27
- !! source digest: sha256:8ad6448c5d7b8c1d80778b60629f0fd0b23b23c5a2465428963a4f6ff0b6e290
31
+ !! source digest: sha256:342acae1cdc49d69c1cdd35ab54b77bb146d09c5bf986f8f0931a3b4343e4858
28
32
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
29
33
 
30
34
  .. |badge1| image:: https://img.shields.io/badge/maturity-Alpha-red.png
31
35
  :target: https://odoo-community.org/page/development-status
32
36
  :alt: Alpha
33
- .. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
37
+ .. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
34
38
  :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
35
39
  :alt: License: AGPL-3
36
40
  .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github
@@ -0,0 +1,19 @@
1
+ odoo/addons/web_notify_channel_message/README.rst,sha256=F78xRu87j6mQe7s2B_vWWqkjuaGqKy_DYJKlqcY2vpQ,3435
2
+ odoo/addons/web_notify_channel_message/__init__.py,sha256=X9EJGOE2GtZbS0G82PtSXmWSZ_R8jEM0rlJTDliQjp4,21
3
+ odoo/addons/web_notify_channel_message/__manifest__.py,sha256=hd9IoxvN-5YaBeWdRk-h9LnuoC_QOKUY6zPQrgLeHBM,545
4
+ odoo/addons/web_notify_channel_message/i18n/fr.po,sha256=y1i0Y0bVJoUBuTb0bSlzyhNn-Gi6uLOPE6NC6z56c-Q,1456
5
+ odoo/addons/web_notify_channel_message/i18n/it.po,sha256=-dITldeVkO8rCdJ1czT9CukgPs70pLeIy2uvLJH4gLg,1449
6
+ odoo/addons/web_notify_channel_message/i18n/web_notify_channel_message.pot,sha256=1vFtK6EztmHuOSx8g6V3_-pEzGINJKKAgvIQ0fQvopg,1620
7
+ odoo/addons/web_notify_channel_message/models/__init__.py,sha256=Ocw5WoFLtMI22K4zFx5RnGwT3hpxU7Vcd0rVs2pem3M,51
8
+ odoo/addons/web_notify_channel_message/models/mail_channel.py,sha256=Bi66Dr4cec3cByFhBBEgbJJ8WyqYKQCo8lIOCymDTso,732
9
+ odoo/addons/web_notify_channel_message/models/res_users.py,sha256=iu1id_A69U2AzHDXE_wMSw4CD9vE2pFx8unHZYqR79Y,858
10
+ odoo/addons/web_notify_channel_message/readme/CONTRIBUTORS.rst,sha256=wqZGEym4NqbEdIv7gfL5k7pFjdcykULtHB_-oKckBos,189
11
+ odoo/addons/web_notify_channel_message/readme/DESCRIPTION.rst,sha256=WHoT-H1vw-feMiQVUHfqqePV2T6I1zTf9EwWozUye08,109
12
+ odoo/addons/web_notify_channel_message/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
13
+ odoo/addons/web_notify_channel_message/static/description/index.html,sha256=rIbBlCzYxcPHWaed1dSXfeqw8AD4twVRi2qbB-_rSl4,13212
14
+ odoo/addons/web_notify_channel_message/tests/__init__.py,sha256=tql7Xwa5XYIo_KCUy_HpndYblTtITJZz6oPATp__IbE,42
15
+ odoo/addons/web_notify_channel_message/tests/test_notify_channel_message.py,sha256=09gpVo7AG8v_Vn28nz1UwtAKEIJgLmA-IW1Lxu4kRQA,2525
16
+ odoo14_addon_web_notify_channel_message-14.0.1.1.0.dist-info/METADATA,sha256=YCEAe6Te482BY8AVSbs1ALJ836BYs4IVoh6-5cRdJgA,4084
17
+ odoo14_addon_web_notify_channel_message-14.0.1.1.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
18
+ odoo14_addon_web_notify_channel_message-14.0.1.1.0.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
19
+ odoo14_addon_web_notify_channel_message-14.0.1.1.0.dist-info/RECORD,,
@@ -1,16 +0,0 @@
1
- odoo/addons/web_notify_channel_message/README.rst,sha256=1td3-R5wRYOOkZZxdLc4MtwKL2RR8Ea7QqyB3eDseno,3270
2
- odoo/addons/web_notify_channel_message/__init__.py,sha256=X9EJGOE2GtZbS0G82PtSXmWSZ_R8jEM0rlJTDliQjp4,21
3
- odoo/addons/web_notify_channel_message/__manifest__.py,sha256=iedv3-Fkw48tEhnQvQZp5TYf22WHJ88XfVkfDTudF4Q,545
4
- odoo/addons/web_notify_channel_message/i18n/fr.po,sha256=y1i0Y0bVJoUBuTb0bSlzyhNn-Gi6uLOPE6NC6z56c-Q,1456
5
- odoo/addons/web_notify_channel_message/i18n/it.po,sha256=-dITldeVkO8rCdJ1czT9CukgPs70pLeIy2uvLJH4gLg,1449
6
- odoo/addons/web_notify_channel_message/i18n/web_notify_channel_message.pot,sha256=tX14VyzvKyViE49W7vYm3StZFW-GQm-E6IFMqcIdK7k,1200
7
- odoo/addons/web_notify_channel_message/models/__init__.py,sha256=qPwd2V_3nr-YFEQUJM3WGvbXdkSZF9cMAqbkb14ipWg,27
8
- odoo/addons/web_notify_channel_message/models/mail_channel.py,sha256=T1l8Nyz73gTTk0KN3MaITSvPd5gjH_4OOBHndWNHr7M,728
9
- odoo/addons/web_notify_channel_message/readme/CONTRIBUTORS.rst,sha256=wqZGEym4NqbEdIv7gfL5k7pFjdcykULtHB_-oKckBos,189
10
- odoo/addons/web_notify_channel_message/readme/DESCRIPTION.rst,sha256=WHoT-H1vw-feMiQVUHfqqePV2T6I1zTf9EwWozUye08,109
11
- odoo/addons/web_notify_channel_message/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
12
- odoo/addons/web_notify_channel_message/static/description/index.html,sha256=34X6bAjExG5vbBZweJ5XIa8PdgIv74-YsgubOgTLv7Q,12957
13
- odoo14_addon_web_notify_channel_message-14.0.1.0.1.dev8.dist-info/METADATA,sha256=jSk7KY_lyD8Hmo8DKA-jROFrsI5yp9Lry_-WvT17spw,3924
14
- odoo14_addon_web_notify_channel_message-14.0.1.0.1.dev8.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
15
- odoo14_addon_web_notify_channel_message-14.0.1.0.1.dev8.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
16
- odoo14_addon_web_notify_channel_message-14.0.1.0.1.dev8.dist-info/RECORD,,