File tree 1 file changed +19
-0
lines changed
src/main/java/org/kohsuke/github
1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -3080,6 +3080,25 @@ public PagedIterable<Contributor> listContributors() throws IOException {
3080
3080
return root ().createRequest ().withUrlPath (getApiTailUrl ("contributors" )).toIterable (Contributor [].class , null );
3081
3081
}
3082
3082
3083
+ /**
3084
+ * List contributors paged iterable.
3085
+ *
3086
+ * @param includeAnonymous
3087
+ * whether to include anonymous contributors
3088
+ * @return the paged iterable
3089
+ * @throws IOException
3090
+ * the io exception
3091
+ */
3092
+ public PagedIterable <Contributor > listContributors (boolean includeAnonymous ) throws IOException {
3093
+ if (includeAnonymous ) {
3094
+ return root ().createRequest ()
3095
+ .withUrlPath (getApiTailUrl ("contributors" ))
3096
+ .with ("anon" , "true" )
3097
+ .toIterable (Contributor [].class , null );
3098
+ }
3099
+ return listContributors ();
3100
+ }
3101
+
3083
3102
/**
3084
3103
* The type Contributor.
3085
3104
*/
You can’t perform that action at this time.
0 commit comments