Skip to content

Commit 376a3ce

Browse files
committed
GroupScript: add the possibility to skip groups by ids when using GET_DESCENDANT_GROUPS
Test case for gitlab4j/gitlab4j-api#1213
1 parent c324891 commit 376a3ce

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

gitlab4j-test/GroupScript.java

+9-2
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ public class GroupScript implements Callable<Integer> {
3535
@Option(names = { "-g", "--group" }, description = "group id")
3636
private String group;
3737

38+
@Option(names = { "-s", "--skip" }, description = "skipped group ids")
39+
private List<Integer> skipped;
40+
3841
@Option(names = { "-c", "--config" }, description = "configuration file location")
3942
String configFile;
4043

@@ -85,9 +88,13 @@ public Integer call() throws Exception {
8588
break;
8689
case GET_DESCENDANT_GROUPS:
8790
ensureExists(group, "group");
91+
GroupFilter filter = new GroupFilter()
92+
.withAllAvailable(true);
93+
if (skipped != null) {
94+
filter.withSkipGroups(skipped);
95+
}
8896
var descendantGroups = gitLabApi.getGroupApi()
89-
.getDescendantGroups(idOrPath(group), new GroupFilter()
90-
.withAllAvailable(true));
97+
.getDescendantGroups(idOrPath(group), filter);
9198
for (Group g : descendantGroups) {
9299
System.out.println(g.getFullName());
93100
}

0 commit comments

Comments
 (0)