mirror of
https://github.com/passbolt/go-passbolt.git
synced 2025-09-13 14:29:09 +00:00
feat: deprecating api-version query param in api calls
This commit is contained in:
parent
7a23a1aeea
commit
9eb37766a8
2 changed files with 8 additions and 6 deletions
|
@ -33,9 +33,14 @@ func (c *Client) DoCustomRequest(ctx context.Context, method, path, version stri
|
|||
|
||||
// DoCustomRequestAndReturnRawResponse Executes a Custom Request and returns a APIResponse and the Raw HTTP Response
|
||||
func (c *Client) DoCustomRequestAndReturnRawResponse(ctx context.Context, method, path, version string, body interface{}, opts interface{}) (*http.Response, *APIResponse, error) {
|
||||
// version is no longer used and is ignored.
|
||||
return c.DoCustomRequestAndReturnRawResponseV5(ctx, method, path, body, opts)
|
||||
}
|
||||
|
||||
func (c *Client) DoCustomRequestAndReturnRawResponseV5(ctx context.Context, method, path string, body interface{}, opts interface{}) (*http.Response, *APIResponse, error) {
|
||||
firstTime := true
|
||||
start:
|
||||
u, err := generateURL(*c.baseURL, path, version, opts)
|
||||
u, err := generateURL(*c.baseURL, path, opts)
|
||||
if err != nil {
|
||||
return nil, nil, fmt.Errorf("Generating Path: %w", err)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue