leadguru-jobs 0.730.0__py3-none-any.whl → 0.731.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.
- {leadguru_jobs-0.730.0.dist-info → leadguru_jobs-0.731.0.dist-info}/METADATA +1 -1
- {leadguru_jobs-0.730.0.dist-info → leadguru_jobs-0.731.0.dist-info}/RECORD +5 -5
- lgt_jobs/lgt_data/models/notifications/notification.py +4 -4
- {leadguru_jobs-0.730.0.dist-info → leadguru_jobs-0.731.0.dist-info}/WHEEL +0 -0
- {leadguru_jobs-0.730.0.dist-info → leadguru_jobs-0.731.0.dist-info}/top_level.txt +0 -0
@@ -79,7 +79,7 @@ lgt_jobs/lgt_data/models/leads/extended_lead.py,sha256=ezFrKv-f5GBXr3QAM-V_qJQ-i
|
|
79
79
|
lgt_jobs/lgt_data/models/leads/lead.py,sha256=mTZh8YV06nX9OWYvv_X7rDdIperB-RPChrEuheeYMU0,1300
|
80
80
|
lgt_jobs/lgt_data/models/leads/message.py,sha256=7mXwYfSpmhY_zC8TfUdAZzxsPP-02bOqVjdkN4Vid5s,1533
|
81
81
|
lgt_jobs/lgt_data/models/notifications/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
82
|
-
lgt_jobs/lgt_data/models/notifications/notification.py,sha256=
|
82
|
+
lgt_jobs/lgt_data/models/notifications/notification.py,sha256=MQNdY_kGB_P9shy6lPGuo1HtfhB6bS2j3ZYX4WKm2Qk,25476
|
83
83
|
lgt_jobs/lgt_data/models/notifications/notification_settings.py,sha256=2GS2mNQkgVUqY0WgOzC6-IZDp77FeZvUeutfJyHdvMQ,2870
|
84
84
|
lgt_jobs/lgt_data/models/people/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
85
85
|
lgt_jobs/lgt_data/models/people/people.py,sha256=pm60uMVmNIxOGCBAtZWhmXSJOe0SJ4C1y_HurUq00oY,3420
|
@@ -109,7 +109,7 @@ lgt_jobs/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU
|
|
109
109
|
lgt_jobs/services/k8_manager.py,sha256=bXpka9psIQ5UJ6QG_e4xolmE_3gtmNrzzZeL03bJ62I,995
|
110
110
|
lgt_jobs/services/web_client.py,sha256=oMyWJxwGeIe3f40fPT7xcisjDg3BhA3Ipf8dr1jVT-Y,1549
|
111
111
|
lgt_jobs/templates/new_message.html,sha256=dZl8UmdAOOMq4nidvAgMFroSrTV7Pw0RWt2yLp_2idg,6989
|
112
|
-
leadguru_jobs-0.
|
113
|
-
leadguru_jobs-0.
|
114
|
-
leadguru_jobs-0.
|
115
|
-
leadguru_jobs-0.
|
112
|
+
leadguru_jobs-0.731.0.dist-info/METADATA,sha256=PwUFXvBnrdF2tW8CxEdmAU9K0968kHqF3sDum6YtEJo,1459
|
113
|
+
leadguru_jobs-0.731.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
114
|
+
leadguru_jobs-0.731.0.dist-info/top_level.txt,sha256=rIuw1DqwbnZyeoarBSC-bYeGOhv9mZBs7_afl9q4_JI,9
|
115
|
+
leadguru_jobs-0.731.0.dist-info/RECORD,,
|
@@ -342,13 +342,13 @@ class BulkReactionsNotification(Notification):
|
|
342
342
|
if len(post.messages) <= 1:
|
343
343
|
source_name = post.messages[0].server_name
|
344
344
|
channel_name = post.messages[0].channel_name
|
345
|
-
return (f'You have new reaction in
|
346
|
-
f'to your {post.title} post.')
|
345
|
+
return (f'You have new reaction in <b>{source_name}/#{channel_name}</b> '
|
346
|
+
f'to your <span style="font-weight: 600; color: #3579F6">{post.title}</span> post.')
|
347
347
|
|
348
348
|
channels = set([message.channel_id for message in post.messages])
|
349
349
|
sources = set([message.server_id for message in post.messages])
|
350
|
-
return (f'You have new reactions in {len(channels)} from {len(sources)} communities '
|
351
|
-
f'to your {post.title} post.')
|
350
|
+
return (f'You have new reactions in <b>{len(channels)}</b> from <b>{len(sources)}</b> communities '
|
351
|
+
f'to your <span style="font-weight: 600; color: #3579F6">{post.title}</span> post.')
|
352
352
|
|
353
353
|
|
354
354
|
class FollowUpNotification(Notification):
|
File without changes
|
File without changes
|