Skip to content

Commit

Permalink
Incorporate feedback from review
Browse files Browse the repository at this point in the history
  • Loading branch information
daniellohausen committed Jan 17, 2019
1 parent 6892ab7 commit 588664b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions jumpcloud/resource_user_group_membership.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,9 @@ func resourceUserGroupMembershipRead(d *schema.ResourceData, m interface{}) erro
config := m.(*jcapiv2.Configuration)
client := jcapiv2.NewAPIClient(config)

var limit int32 = 100
optionals := map[string]interface{}{
"groupId": d.Get("groupid").(string),
"limit": limit,
"limit": int32(100),
}

graphconnect, _, err := client.UserGroupMembersMembershipApi.GraphUserGroupMembersList(
Expand Down

0 comments on commit 588664b

Please sign in to comment.