Skip to content

Commit

Permalink
Merge pull request #2094 from gtech-mulearn/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
jelanmathewjames authored Jun 20, 2024
2 parents f580b7f + 62e0a0b commit b0b13e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion api/launchpad/launchpad_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def get(self, request):
).values('user').annotate(
total_karma=Sum('karma')
).values('total_karma')
allowed_org_types = ["College", "School", "Company"]
allowed_org_types = ["College", "School", "Company", "Community"]

intro_task_completed_users = KarmaActivityLog.objects.filter(
task__event='launchpad',
Expand Down
2 changes: 1 addition & 1 deletion api/launchpad/serializers.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def get_rank(self, obj):
).values('user').annotate(
total_karma=Sum('karma')
).values('total_karma')
allowed_org_types = ["College", "School", "Company"]
allowed_org_types = ["College", "School", "Company", "Community"]

intro_task_completed_users = KarmaActivityLog.objects.filter(
task__event='launchpad',
Expand Down

0 comments on commit b0b13e7

Please sign in to comment.