Skip to content

Commit

Permalink
s/makeRequestContextWithHeaders/makeRequestContext
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobbednarz authored Feb 7, 2022
1 parent aecbabc commit 92d4f35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion teams_devices.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ func (api *API) ListTeamsDevices(ctx context.Context, accountID string) ([]Teams
func (api *API) RevokeTeamsDevices(ctx context.Context, accountID string, deviceIds []string) (Response, error) {
uri := fmt.Sprintf("/%s/%s/devices/revoke", AccountRouteRoot, accountID)

res, err := api.makeRequestContextWithHeaders(ctx, http.MethodPost, uri, deviceIds)
res, err := api.makeRequestContext(ctx, http.MethodPost, uri, deviceIds)
if err != nil {
return Response{}, err
}
Expand Down

0 comments on commit 92d4f35

Please sign in to comment.