Skip to content

Commit

Permalink
🧹 update slack user limit per call to maximum (#2905)
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-rock authored Dec 28, 2023
1 parent f5fcee3 commit 388094d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion providers/slack/resources/users.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ func (s *mqlSlackUsers) list() ([]interface{}, error) {
ctx := context.Background()

// requires users:read scope
users, err := client.GetUsersContext(ctx)
users, err := client.GetUsersContext(ctx, slack.GetUsersOptionLimit(999))
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 388094d

Please sign in to comment.