ci: merge main to release (#7580)

ci: merge main to release
This commit is contained in:
Robert Sparks 2024-06-21 09:51:36 -05:00 committed by GitHub
commit 7cd26c22aa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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)