Set use_https to true

used for password reset urls in emails by django
This commit is contained in:
Emanuel Schütze 2019-01-31 22:41:08 +01:00
parent 13b6acf72e
commit b480266dad

View File

@ -597,7 +597,7 @@ class PasswordResetView(APIView):
""" """
http_method_names = ["post"] 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): def post(self, request, *args, **kwargs):
""" """