leadguru-jobs 0.642.0__py3-none-any.whl → 0.643.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.642.0.dist-info → leadguru_jobs-0.643.0.dist-info}/METADATA +1 -1
- {leadguru_jobs-0.642.0.dist-info → leadguru_jobs-0.643.0.dist-info}/RECORD +5 -5
- lgt_jobs/lgt_data/mongo_repository.py +4 -1
- {leadguru_jobs-0.642.0.dist-info → leadguru_jobs-0.643.0.dist-info}/WHEEL +0 -0
- {leadguru_jobs-0.642.0.dist-info → leadguru_jobs-0.643.0.dist-info}/top_level.txt +0 -0
@@ -42,7 +42,7 @@ lgt_jobs/lgt_data/engine.py,sha256=GY8FOl3dl7euKjQRML_H3ophaSTgfQ8ICMRv1NpE2oE,7
|
|
42
42
|
lgt_jobs/lgt_data/enums.py,sha256=27Gd_o5QVCrSUMIfL0DJ72xV77T9fK0kYrOaC78O0SU,2292
|
43
43
|
lgt_jobs/lgt_data/helpers.py,sha256=S_1P7pnx14dllmen-TzjA9pkKWQr39x8-v6iv7FUYnQ,423
|
44
44
|
lgt_jobs/lgt_data/model.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
45
|
-
lgt_jobs/lgt_data/mongo_repository.py,sha256=
|
45
|
+
lgt_jobs/lgt_data/mongo_repository.py,sha256=0MnMiEANtXQ9n7GCf9rhS25mmIy_LbDV5QRTt4jXRuw,54367
|
46
46
|
lgt_jobs/lgt_data/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
47
47
|
lgt_jobs/lgt_data/models/base.py,sha256=YaiceCaaF45snOLx-bQoYJ1aTWrfgMQeHWjAaRnzGKE,592
|
48
48
|
lgt_jobs/lgt_data/models/boards/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -103,7 +103,7 @@ lgt_jobs/lgt_data/repositories/post/posts.py,sha256=ZA19L-CYdxLhlapyMQtSJzP3QMUl
|
|
103
103
|
lgt_jobs/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
104
104
|
lgt_jobs/services/web_client.py,sha256=oMyWJxwGeIe3f40fPT7xcisjDg3BhA3Ipf8dr1jVT-Y,1549
|
105
105
|
lgt_jobs/templates/new_message.html,sha256=dZl8UmdAOOMq4nidvAgMFroSrTV7Pw0RWt2yLp_2idg,6989
|
106
|
-
leadguru_jobs-0.
|
107
|
-
leadguru_jobs-0.
|
108
|
-
leadguru_jobs-0.
|
109
|
-
leadguru_jobs-0.
|
106
|
+
leadguru_jobs-0.643.0.dist-info/METADATA,sha256=0uFm7nNb5cX0y8d3jzAssNwfGj__3V4qW8MwTGZMGLc,1319
|
107
|
+
leadguru_jobs-0.643.0.dist-info/WHEEL,sha256=HiCZjzuy6Dw0hdX5R3LCFPDmFS4BWl8H-8W39XfmgX4,91
|
108
|
+
leadguru_jobs-0.643.0.dist-info/top_level.txt,sha256=rIuw1DqwbnZyeoarBSC-bYeGOhv9mZBs7_afl9q4_JI,9
|
109
|
+
leadguru_jobs-0.643.0.dist-info/RECORD,,
|
@@ -240,6 +240,7 @@ class UserLeadMongoRepository(BaseMongoRepository):
|
|
240
240
|
'user_id': 1,
|
241
241
|
'user_email': '$user.email',
|
242
242
|
'notification_settings': '$user.notification_settings',
|
243
|
+
'subscription_id': "$user.subscription_id",
|
243
244
|
'followup_to': {
|
244
245
|
'$cond': {
|
245
246
|
'if': {'$eq': ['$user.notification_settings.follow_ups.type', 'once_a_day']},
|
@@ -280,7 +281,9 @@ class UserLeadMongoRepository(BaseMongoRepository):
|
|
280
281
|
{
|
281
282
|
'$addFields': {
|
282
283
|
'email': {'$first': '$leads.user_email'},
|
283
|
-
'notification_settings': {'$first': '$leads.notification_settings'}
|
284
|
+
'notification_settings': {'$first': '$leads.notification_settings'},
|
285
|
+
'subscription_id': {'$first': '$leads.subscription_id'}
|
286
|
+
}
|
284
287
|
},
|
285
288
|
{'$match': {'actual_follow_ups': {'$ne': []}}},
|
286
289
|
{'$unset': ['leads']}
|
File without changes
|
File without changes
|