Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Schpotsky committed Apr 9, 2020
1 parent a4a9823 commit 6c72916
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ private List<GroupMember> getGroupMemberByGid(String gid) throws Exception {
}

jsonNode = objectMapper.readTree(entity.getContent());
List<GroupMember> groupMembers = objectMapper.readValue(jsonNode.path("result"),
List<GroupMember> groupMembers = objectMapper.readValue(jsonNode,
new TypeReference<List<GroupMember>>(){});
for (GroupMember groupMember : groupMembers) {
result.add(groupMember);
Expand Down
8 changes: 4 additions & 4 deletions token.properties.docker
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@
@DOMAIN_AUTH0@ = sma.auth0.com
@CLIENT_ID_AUTH0@ =
@CLIENT_SECRET_AUTH0@ =
@JWT_V3_SECRET@ =
@JWT_V3_SECRET@ = secret
@REG_SERVER_NAME@= tc.cloud.topcoder.com
@LDAP_AUTH0_CONNECTION_NAME@=vm-ldap-connection
@JWT_VALID_ISSUERS@ = https://api.topcoder.com, https://sma.auth0.com, https://newtc.auth0.com, https://topcoder-newauth.auth0.com/
Expand All @@ -337,12 +337,12 @@
@ApplicationServer.JWT_COOKIE_KEY@=tcjwt_vm
@ApplicationServer.JWT_V3_COOKIE_KEY@=v3jwt

@memberSearchApiUrl@=https://tc-api.cloud.topcoder.com:8443/v3/members/_suggest/
@memberSearchApiUrl@=http://cockpit.cloud.topcoder.com:8443/v3/members/_suggest/
@groupMemberSearchApiUrl@=https://cockpit.cloud.topcoder.com/direct/group/member?handle=
@groupMemberApiUrl@=http://tc-api.cloud.topcoder.com:8080/v3/groups/%d/members
@groupMemberApiUrl@=http://192.168.1.3:4000/v5/groups/%s/members
@directChallengeServicesApiUrl@=http://api.topcoder-dev.com/v3/direct/challenges
@authorizationUrl@=https://api.topcoder-dev.com/v3/authorizations
@userGroupsApiEndpoint@=http://tc-api.cloud.topcoder.com:3000/api/v5/groups
@userGroupsApiEndpoint@=http://192.168.1.3:4000/v5/groups

@aws_s3_bucket@=topcoder-dev-submissions
@aws_s3_access_key@=
Expand Down

0 comments on commit 6c72916

Please sign in to comment.