Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AlekSIS-Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AlekSIS®
Official
AlekSIS-Core
Commits
045110bc
Commit
045110bc
authored
2 years ago
by
Nik | Klampfradler
Browse files
Options
Downloads
Plain Diff
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
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!1051
Resolve "Password change view throws 500 if unauthenticated"
Pipeline
#75654
canceled
2 years ago
Stage: prepare
Stage: test
Stage: build
Stage: publish
Stage: docker
Stage: deploy
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG.rst
+1
-0
1 addition, 0 deletions
CHANGELOG.rst
aleksis/core/tests/regression/test_regression.py
+11
-0
11 additions, 0 deletions
aleksis/core/tests/regression/test_regression.py
aleksis/core/views.py
+2
-1
2 additions, 1 deletion
aleksis/core/views.py
with
14 additions
and
1 deletion
CHANGELOG.rst
+
1
−
0
View file @
045110bc
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
aleksis/core/tests/regression/test_regression.py
+
11
−
0
View file @
045110bc
...
@@ -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
"
)
This diff is collapsed.
Click to expand it.
aleksis/core/views.py
+
2
−
1
View file @
045110bc
...
@@ -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
"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment