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
19af6f0b
Verified
Commit
19af6f0b
authored
3 years ago
by
Jonathan Weth
Browse files
Options
Downloads
Patches
Plain Diff
Use dummy queryset if there are no real objects for permission assigning view
parent
210cd536
No related branches found
No related tags found
1 merge request
!807
Resolve "Permission assign view doesn't work with GlobalPermissionModel"
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
aleksis/core/forms.py
+8
-1
8 additions, 1 deletion
aleksis/core/forms.py
with
8 additions
and
1 deletion
aleksis/core/forms.py
+
8
−
1
View file @
19af6f0b
...
...
@@ -5,6 +5,7 @@ from django import forms
from
django.conf
import
settings
from
django.contrib.auth
import
get_user_model
from
django.contrib.auth.models
import
Permission
from
django.contrib.sites.models
import
Site
from
django.core.exceptions
import
ValidationError
from
django.db.models
import
QuerySet
from
django.http
import
HttpRequest
...
...
@@ -460,7 +461,13 @@ class AssignPermissionForm(forms.Form):
super
().
__init__
(
*
args
,
**
kwargs
)
model_class
=
self
.
permission
.
content_type
.
model_class
()
queryset
=
model_class
.
objects
.
all
()
if
model_class
.
_meta
.
managed
and
not
model_class
.
_meta
.
abstract
:
queryset
=
model_class
.
objects
.
all
()
else
:
# The following queryset is just a dummy one. It has no real meaning.
# We need it as there are permissions without real objects,
# but we want to use the same form.
queryset
=
Site
.
objects
.
none
()
self
.
fields
[
"
objects
"
].
queryset
=
queryset
search_fields
=
getattr
(
model_class
,
"
get_filter_fields
"
,
lambda
:
[])()
...
...
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