Skip to content

Commit

Permalink
Merge pull request #954 from unkempthenry/audit-log-updates
Browse files Browse the repository at this point in the history
Audit log fixes
  • Loading branch information
kanata2 committed Aug 2, 2021
2 parents f5878c7 + 18a620d commit 17d1f5c
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions audit.go
Expand Up @@ -111,11 +111,9 @@ func (api *Client) GetAuditLogs(params AuditLogParameters) (entries []AuditEntry

// GetAuditLogsContext retrieves a page of audit entries according to the parameters given with a custom context
func (api *Client) GetAuditLogsContext(ctx context.Context, params AuditLogParameters) (entries []AuditEntry, nextCursor string, err error) {
values := url.Values{
"token": {api.token},
}
values := url.Values{}
if params.Limit != 0 {
values.Add("count", strconv.Itoa(params.Limit))
values.Add("limit", strconv.Itoa(params.Limit))
}
if params.Oldest != 0 {
values.Add("oldest", strconv.Itoa(params.Oldest))
Expand Down

0 comments on commit 17d1f5c

Please sign in to comment.