Merge pull request #1186 from automatisch/gitlab-use-user-projects

fix(gitlab/list-projects): list projects the user has membership
This commit is contained in:
Ömer Faruk Aydın
2023-07-31 17:03:25 +03:00
committed by GitHub

View File

@@ -9,11 +9,11 @@ export default {
// ref:
// - https://docs.gitlab.com/ee/api/projects.html#list-all-projects
// - https://docs.gitlab.com/ee/api/rest/index.html#keyset-based-pagination
const firstPageRequest = $.http.get('/api/v4/projects', {
params: {
simple: true,
pagination: 'keyset',
membership: true,
order_by: 'id',
sort: 'asc',
},