From d6503a151cdfda59c2d4770d9198ca30b647af2d Mon Sep 17 00:00:00 2001 From: rigolden Date: Mon, 27 Jul 2020 10:41:44 -0300 Subject: [PATCH] fix: project api methods --- default_api.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/default_api.go b/default_api.go index 137f4df..9186d2e 100644 --- a/default_api.go +++ b/default_api.go @@ -899,10 +899,9 @@ func (a *DefaultApiService) CreateGroup(localVarOptionals map[string]interface{} Create a new project. <p> To include a custom avatar for the project, the project definition should contain an additional attribute with the key <code>avatar</code> and the value a data URI containing Base64-encoded image data. The URI should be in the following format: <pre> data:(content type, e.g. image/png);base64,(data) </pre> If the data is not Base64-encoded, or if a character set is defined in the URI, or the URI is otherwise invalid, <em>project creation will fail</em>. <p> The authenticated user must have <strong>PROJECT_CREATE</strong> permission to call this resource. @return */ -func (a *DefaultApiService) CreateProject() (*APIResponse, error) { +func (a *DefaultApiService) CreateProject(localVarPostBody interface{}) (*APIResponse, error) { var ( localVarHTTPMethod = strings.ToUpper("Post") - localVarPostBody interface{} localVarFileName string localVarFileBytes []byte )