Kaydet (Commit) 854f6950 authored tarafından Tim Graham's avatar Tim Graham

Refs #27815 -- Reordered LoginView.get_form_kwargs().

üst 41ba27fe
......@@ -83,6 +83,11 @@ class LoginView(SuccessURLAllowedHostsMixin, FormView):
def get_form_class(self):
return self.authentication_form or self.form_class
def get_form_kwargs(self):
kwargs = super().get_form_kwargs()
kwargs['request'] = self.request
return kwargs
def form_valid(self, form):
"""Security check complete. Log the user in."""
auth_login(self.request, form.get_user())
......@@ -100,11 +105,6 @@ class LoginView(SuccessURLAllowedHostsMixin, FormView):
context.update(self.extra_context)
return context
def get_form_kwargs(self):
kwargs = super().get_form_kwargs()
kwargs['request'] = self.request
return kwargs
def login(request, *args, **kwargs):
warnings.warn(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment