Skip to content

Commit

Permalink
ci: merge main to release (#7580)
Browse files Browse the repository at this point in the history
ci: merge main to release
  • Loading branch information
rjsparks authored Jun 21, 2024
2 parents 79ef179 + 6f4e328 commit 7cd26c2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ietf/sync/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ def notify(request, org, notification):
password = request.POST.get("password") or request.GET.get("password")

if username != None and password != None:
# Used to reject non-https traffic here, but that's now enforced by a domain-wide upgrade
# from http to https. Django's request.is_secure() is always False now.
if not user.is_authenticated:
try:
user = User.objects.get(username__iexact=username)
Expand Down

0 comments on commit 7cd26c2

Please sign in to comment.