Skip to content
Snippets Groups Projects
Commit 045110bc authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Merge branch '703-password-change-view-throws-500-if-unauthenticated' into 'master'

Resolve "Password change view throws 500 if unauthenticated"

Closes #703

See merge request !1051
parents ed061bbd fa1a7a6c
No related branches found
No related tags found
1 merge request!1051Resolve "Password change view throws 500 if unauthenticated"
Pipeline #75654 canceled
...@@ -25,6 +25,7 @@ Changed ...@@ -25,6 +25,7 @@ Changed
Fixed Fixed
~~~~~~~ ~~~~~~~
* Password change view did not redirect to login when accessed unauthenticated.
* Sorting icons were inlined into stylesheet * Sorting icons were inlined into stylesheet
`2.9`_ - 2022-05-25 `2.9`_ - 2022-05-25
......
...@@ -146,3 +146,14 @@ def test_no_access_oauth2_client_credentials_without_allowed_scopes(client): ...@@ -146,3 +146,14 @@ def test_no_access_oauth2_client_credentials_without_allowed_scopes(client):
) )
r = client.get(url, HTTP_AUTHORIZATION=auth_header) r = client.get(url, HTTP_AUTHORIZATION=auth_header)
assert r.status_code == 200 assert r.status_code == 200
def test_change_password_not_logged_in(client):
"""Tests that CustomPasswordChangeView redirects to login when accessed unauthenticated.
https://edugit.org/AlekSIS/official/AlekSIS-Core/-/issues/703
"""
response = client.get(reverse("account_change_password"), follow=True)
assert response.status_code == 200
assert "Please login to see this page." in response.content.decode("utf-8")
...@@ -4,6 +4,7 @@ from urllib.parse import urlencode, urlparse, urlunparse ...@@ -4,6 +4,7 @@ from urllib.parse import urlencode, urlparse, urlunparse
from django.apps import apps from django.apps import apps
from django.conf import settings from django.conf import settings
from django.contrib.auth.mixins import LoginRequiredMixin
from django.contrib.auth.models import Group as DjangoGroup from django.contrib.auth.models import Group as DjangoGroup
from django.contrib.auth.models import Permission, User from django.contrib.auth.models import Permission, User
from django.contrib.contenttypes.models import ContentType from django.contrib.contenttypes.models import ContentType
...@@ -1359,7 +1360,7 @@ class CeleryProgressView(View): ...@@ -1359,7 +1360,7 @@ class CeleryProgressView(View):
return get_progress(request, task_id, *args, **kwargs) return get_progress(request, task_id, *args, **kwargs)
class CustomPasswordChangeView(PermissionRequiredMixin, PasswordChangeView): class CustomPasswordChangeView(LoginRequiredMixin, PermissionRequiredMixin, PasswordChangeView):
"""Custom password change view to allow to disable changing of password.""" """Custom password change view to allow to disable changing of password."""
permission_required = "core.can_change_password" permission_required = "core.can_change_password"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment