@@ -543,6 +543,11 @@ def callback(request):
543
543
('grants.tasks.batch_process_grant_contributions' , {'queue' : 'high_priority' }),
544
544
('kudos.tasks.mint_token_request' , {'queue' : 'high_priority' }),
545
545
('dashboard.tasks.increment_view_count' , {'queue' : 'analytics' }),
546
+ ('dashboard.tasks.record_visit' , {'queue' : 'analytics' }),
547
+ ('dashboard.tasks.record_join' , {'queue' : 'analytics' }),
548
+ ('townsquare.tasks.increment_offer_view_counts' , {'queue' : 'analytics' }),
549
+ ('townsquare.tasks.increment_view_counts' , {'queue' : 'analytics' }),
550
+ ('townsquare.tasks.send_comment_email' , {'queue' : 'marketing' }),
546
551
('marketing.tasks.*' , {'queue' : 'marketing' }),
547
552
('grants.tasks.*' , {'queue' : 'default' }),
548
553
('dashboard.tasks.*' , {'queue' : 'default' }),
@@ -958,3 +963,6 @@ def callback(request):
958
963
# Generating a checksun is optional. When egenerating the static files for a container build
959
964
# we do not want to add a checksum
960
965
BUNDLE_USE_CHECKSUM = env ('BUNDLE_USE_CHECKSUM' , default = True )
966
+
967
+ # Datadog token for UI logging
968
+ DATADOG_TOKEN = env ('DATADOG_TOKEN' , default = None )
0 commit comments