Skip to content

Issue 4393 - Challenge Listings: Challenges not loading for subcommunities #194

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Jun 23, 2020
Next Next commit
Fix group addMember call
  • Loading branch information
luizrrodrigues committed Jun 15, 2020
commit e85b7d42d341a2a2cdb59bd94a96511022b054a7
2 changes: 1 addition & 1 deletion src/services/groups.js
Original file line number Diff line number Diff line change
@@ -210,7 +210,7 @@ class GroupService {
*/
async addMember(groupId, memberId, membershipType) {
const response = await this.private.api.postJson(`/groups/${groupId}/members`, {
param: { memberId, membershipType },
memberId, membershipType,
});

return handleApiResponse(response);