Skip to content
Snippets Groups Projects
Verified Commit 26b63e39 authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

Fix usage of RelatedQuerySet in predicate

parent b7fa224e
No related branches found
No related tags found
1 merge request!49Resolve "Add rules and permissions"
Pipeline #2839 passed
......@@ -16,7 +16,7 @@ def is_lesson_teacher(user: User, obj: LessonPeriod) -> bool:
Checks whether the person linked to the user is a teacher
in the lesson linked to the given LessonPeriod.
"""
return user.person in obj.lesson.teachers
return user.person in obj.lesson.teachers.all()
@predicate
......
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