fix(gitlab/list-projects): list projects the user has membership

This commit is contained in:
Ali BARIN
2023-07-30 18:33:20 +00:00
committed by Faruk AYDIN
parent 928ff53adf
commit 2daf5473bb

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',
},