File tree 1 file changed +9
-2
lines changed
1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,9 @@ public class GroupScript implements Callable<Integer> {
35
35
@ Option (names = { "-g" , "--group" }, description = "group id" )
36
36
private String group ;
37
37
38
+ @ Option (names = { "-s" , "--skip" }, description = "skipped group ids" )
39
+ private List <Integer > skipped ;
40
+
38
41
@ Option (names = { "-c" , "--config" }, description = "configuration file location" )
39
42
String configFile ;
40
43
@@ -85,9 +88,13 @@ public Integer call() throws Exception {
85
88
break ;
86
89
case GET_DESCENDANT_GROUPS :
87
90
ensureExists (group , "group" );
91
+ GroupFilter filter = new GroupFilter ()
92
+ .withAllAvailable (true );
93
+ if (skipped != null ) {
94
+ filter .withSkipGroups (skipped );
95
+ }
88
96
var descendantGroups = gitLabApi .getGroupApi ()
89
- .getDescendantGroups (idOrPath (group ), new GroupFilter ()
90
- .withAllAvailable (true ));
97
+ .getDescendantGroups (idOrPath (group ), filter );
91
98
for (Group g : descendantGroups ) {
92
99
System .out .println (g .getFullName ());
93
100
}
You can’t perform that action at this time.
0 commit comments