Skip to content

Commit b51f089

Browse files
committed
Add SIMILARITY to GroupOrderBy enum
`GET /groups?order_by=similarity` is supported but not available in the high level API https://gitlab.com/gitlab-org/gitlab/-/issues/332889
1 parent 075ce39 commit b51f089

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/gitlab4j/api/Constants.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ public String toString() {
248248
/** Enum to use for ordering the results of getGroups() and getSubGroups(). */
249249
public enum GroupOrderBy {
250250

251-
NAME, PATH, ID;
251+
NAME, PATH, ID, SIMILARITY;
252252
private static JacksonJsonEnumHelper<GroupOrderBy> enumHelper = new JacksonJsonEnumHelper<>(GroupOrderBy.class);
253253

254254
@JsonCreator

0 commit comments

Comments
 (0)