Skip to content

Commit

Permalink
Merge pull request #2130 from jelanmathewjames/dev
Browse files Browse the repository at this point in the history
feat: Update allowed organization types in launchpad leaderboard
  • Loading branch information
jelanmathewjames authored Jul 5, 2024
2 parents 3b609e4 + 742a071 commit 61c7807
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/launchpad/launchpad_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def get(self, request):
)
).filter(
Q(user_organization_link_user__id__in=UserOrganizationLink.objects.filter(
org__org_type__in=allowed_org_types
org__org_type__in=["College", "School", "Company", "Community"]
).values("id")) | Q(user_organization_link_user__id__isnull=True)
).annotate(
karma=Subquery(total_karma_subquery, output_field=IntegerField()),
Expand Down

0 comments on commit 61c7807

Please sign in to comment.