Skip to content
Snippets Groups Projects
Unverified Commit 2cace64a authored by Tom Teichler's avatar Tom Teichler :beers:
Browse files

Add missing entry in get_relevant_groups.

parent fe3ec0cd
No related branches found
No related tags found
No related merge requests found
......@@ -122,6 +122,11 @@ def get_relevant_groups(user):
if user.is_board:
relevant.append(group)
continue
# If person is a supraadmin member, everything is relevant
if user.is_supraadmin:
relevant.append(group)
continue
# If person is a member of the pedagogic board, everything is relevant
if user.is_paeda:
......
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