Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Rex Dri
Rex Dri
Commits
30b5034c
Commit
30b5034c
authored
Mar 10, 2019
by
Florent Chehab
Browse files
Fixes #54
Make use of optimization trick for is_member
parent
6d7d3f44
Pipeline
#36188
passed with stages
in 4 minutes and 23 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
backend/backend_app/utils/__is_member.py
View file @
30b5034c
...
...
@@ -7,4 +7,7 @@ def is_member(group_name: str, user: User) -> bool:
TODO unit test
"""
return
user
.
groups
.
filter
(
name
=
group_name
).
exists
()
return
group_name
in
user
.
cached_groups
# before:
# When we were using the standard django model
# return user.groups.filter(name=group_name).exists()
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment