Commit 740ef3d2 authored by Patrick Webster's avatar Patrick Webster Committed by Sander van Harmelen

Fixing ListVariables and GetVariable function names (#445)

parent bf89afa2
...@@ -45,11 +45,11 @@ func (v ProjectVariable) String() string { ...@@ -45,11 +45,11 @@ func (v ProjectVariable) String() string {
return Stringify(v) return Stringify(v)
} }
// ListProjectVariables gets a list of all variables in a project. // ListVariables gets a list of all variables in a project.
// //
// GitLab API docs: // GitLab API docs:
// https://docs.gitlab.com/ee/api/project_level_variables.html#list-project-variables // https://docs.gitlab.com/ee/api/project_level_variables.html#list-project-variables
func (s *ProjectVariablesService) ListProjectVariables(pid interface{}, options ...OptionFunc) ([]*ProjectVariable, *Response, error) { func (s *ProjectVariablesService) ListVariables(pid interface{}, options ...OptionFunc) ([]*ProjectVariable, *Response, error) {
project, err := parseID(pid) project, err := parseID(pid)
if err != nil { if err != nil {
return nil, nil, err return nil, nil, err
...@@ -70,11 +70,11 @@ func (s *ProjectVariablesService) ListProjectVariables(pid interface{}, options ...@@ -70,11 +70,11 @@ func (s *ProjectVariablesService) ListProjectVariables(pid interface{}, options
return vs, resp, err return vs, resp, err
} }
// ShowVariableDetails gets a variable. // GetVariable gets a variable.
// //
// GitLab API docs: // GitLab API docs:
// https://docs.gitlab.com/ee/api/project_level_variables.html#show-variable-details // https://docs.gitlab.com/ee/api/project_level_variables.html#show-variable-details
func (s *ProjectVariablesService) ShowVariableDetails(pid interface{}, key string, options ...OptionFunc) (*ProjectVariable, *Response, error) { func (s *ProjectVariablesService) GetVariable(pid interface{}, key string, options ...OptionFunc) (*ProjectVariable, *Response, error) {
project, err := parseID(pid) project, err := parseID(pid)
if err != nil { if err != nil {
return nil, nil, err return nil, nil, err
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment