From b480266dadb135d6363cdc816aa8e402a0d1c2d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emanuel=20Sch=C3=BCtze?= Date: Thu, 31 Jan 2019 22:41:08 +0100 Subject: [PATCH] Set use_https to true used for password reset urls in emails by django --- openslides/users/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openslides/users/views.py b/openslides/users/views.py index 40449fe83..d734d28da 100644 --- a/openslides/users/views.py +++ b/openslides/users/views.py @@ -597,7 +597,7 @@ class PasswordResetView(APIView): """ http_method_names = ["post"] - use_https = False # TODO: Do we use https? + use_https = True # TODO: get used protocol from server, see issue #4233 def post(self, request, *args, **kwargs): """