Skip to content

Commit 97a227a

Browse files
committed
Merge remote-tracking branch 'origin/stable'
2 parents 5e85fd5 + 3d167f2 commit 97a227a

36 files changed

+3663
-1638
lines changed

.github/workflows/ci-review-cleanup.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name: Cleanup review environment
55
on:
66
pull_request:
77
types: [ closed ]
8-
branches: [ master ]
8+
branches: [ master, stable ]
99

1010
jobs:
1111
cleanup:

.github/workflows/ci-review.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Setup review environment
33
on:
44
# run it during pull request
55
pull_request:
6-
branches: [ master ]
6+
branches: [ master, stable ]
77

88
jobs:
99
build-and-test:

app/app/local.env

+3
Original file line numberDiff line numberDiff line change
@@ -86,3 +86,6 @@ NETWORK_NAME=localhost
8686
SECRET_WORDS=
8787
PASSWORD=
8888
CYPRESS_REMOTE_DEBUGGING_PORT=9222
89+
90+
# Datadog token for UI logging
91+
DATADOG_TOKEN=

app/app/settings.py

+8
Original file line numberDiff line numberDiff line change
@@ -543,6 +543,11 @@ def callback(request):
543543
('grants.tasks.batch_process_grant_contributions', {'queue': 'high_priority'}),
544544
('kudos.tasks.mint_token_request', {'queue': 'high_priority'}),
545545
('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'}),
546551
('marketing.tasks.*', {'queue': 'marketing'}),
547552
('grants.tasks.*', {'queue': 'default'}),
548553
('dashboard.tasks.*', {'queue': 'default'}),
@@ -958,3 +963,6 @@ def callback(request):
958963
# Generating a checksun is optional. When egenerating the static files for a container build
959964
# we do not want to add a checksum
960965
BUNDLE_USE_CHECKSUM = env('BUNDLE_USE_CHECKSUM', default=True)
966+
967+
# Datadog token for UI logging
968+
DATADOG_TOKEN = env('DATADOG_TOKEN', default=None)

app/app/urls.py

+6
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@
7777

7878
# board
7979
re_path(r'^dashboard/?', dashboard.views.board, name='dashboard'),
80+
re_path(r'^passport/?', dashboard.views.passport, name='passport'),
8081

8182
# kudos
8283
re_path(r'^kudos/?$', kudos.views.about, name='kudos_main'),
@@ -150,6 +151,11 @@
150151
dashboard.views.verify_passport,
151152
name='verify_passport'
152153
),
154+
url(
155+
r'^api/v2/profile/(?P<handle>.*)/passport/unlink',
156+
dashboard.views.unlink_passport,
157+
name='unlink_passport'
158+
),
153159
url(
154160
r'^api/v2/profile/(?P<handle>.*)/passport/trust_bonus',
155161
dashboard.views.get_passport_trust_bonus,

app/assets/v2/images/grants/rocket-right.svg

+140
Loading

0 commit comments

Comments
 (0)