GetScopeList get Sonarqube projects @Summary get Sonarqube projects @Description get Sonarqube projects @Tags plugins/sonarqube @Param connectionId path int false "connection ID" @Param searchTerm query string false "search term for scope name" @Param pageSize query int false "page size, default 50"
(input *plugin.ApiResourceInput)
| 93 | // @Failure 500 {object} shared.ApiBody "Internal Error" |
| 94 | // @Router /plugins/sonarqube/connections/{connectionId}/scopes [GET] |
| 95 | func GetScopeList(input *plugin.ApiResourceInput) (*plugin.ApiResourceOutput, errors.Error) { |
| 96 | return dsHelper.ScopeApi.GetPage(input) |
| 97 | } |
| 98 | |
| 99 | // GetScope get one Sonarqube project |
| 100 | // @Summary get one Sonarqube project |