Skip to content

Commit 902dfb3

Browse files
author
David Wang
authored
fix(crons): Add missing CSRF exemption for checkin PUT (#45699)
related to #45694 Refs #45690
1 parent 74e5545 commit 902dfb3

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/sentry/api/urls.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1342,6 +1342,7 @@
13421342
r"^(?P<organization_slug>[^\/]+)/monitors/(?P<monitor_id>[^\/]+)/checkins/(?P<checkin_id>[^\/]+)/$",
13431343
method_dispatch(
13441344
PUT=MonitorIngestCheckInDetailsEndpoint.as_view(), # Legacy ingest endpoint
1345+
csrf_exempt=True,
13451346
),
13461347
name="sentry-api-0-organization-monitor-check-in-details",
13471348
),

0 commit comments

Comments
 (0)