We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15fe6e4 commit 4d71b7aCopy full SHA for 4d71b7a
lib/index.js
@@ -51,7 +51,8 @@ if (!shell.which("git")) {
51
* defining our needs.
52
*/
53
const pagination = 100; // currently maximum gitlab pagination supports.
54
-const defaultAddress = `/api/v4/projects?simple=true&membership=true&pagination=keyset&order_by=id&sort=asc&per_page=${pagination}`;
+const minAccessLevel = 20; // guests not allowed to download repo.
55
+const defaultAddress = `/api/v4/projects?simple=true&membership=true&pagination=keyset&order_by=id&sort=asc&per_page=${pagination}&min_access_level=${minAccessLevel}`;
56
const bar = new cliProgress.SingleBar(
57
{
58
hideCursor: true,
0 commit comments