Skip to content
Snippets Groups Projects
Commit 3c5edb95 authored by Justin Lapierre's avatar Justin Lapierre
Browse files

EDUCATOR-5080 - Switched back to using topid_id in the method due to a cascade...

EDUCATOR-5080 - Switched back to using topid_id in the method due to a cascade of test failures.  Added ticket to cover the refactor at a future time
parent 70f5c98f
No related branches found
No related tags found
No related merge requests found
......@@ -319,7 +319,7 @@ class CourseTeamMembership(models.Model):
return queryset
@classmethod
def user_in_team_for_teamset(cls, user, course_id, teamset_id):
def user_in_team_for_teamset(cls, user, course_id, topic_id):
"""
Using the provided teamset_id, checks to see if a user is assigned to any team in the teamset.
......@@ -332,7 +332,7 @@ class CourseTeamMembership(models.Model):
True if the user is on a team in a teamset in the course already
False if not
"""
return cls.objects.filter(user=user, team__course_id=course_id, team__topic_id=teamset_id).exists()
return cls.objects.filter(user=user, team__course_id=course_id, team__topic_id=topic_id).exists()
@classmethod
def update_last_activity(cls, user, discussion_topic_id):
......
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