Skip to content

Commit 7c0a3be

Browse files
committed
feat: add in field to IssueFilter #1172
1 parent 6e5e2e6 commit 7c0a3be

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

src/main/java/org/gitlab4j/api/models/IssueFilter.java

+14
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,11 @@ public class IssueFilter implements Serializable {
3535
*/
3636
private IssueState state;
3737

38+
/**
39+
* Modify the scope of the search attribute. title, description, or a string joining them with comma. Default is title,description
40+
*/
41+
private List<String> in;
42+
3843
/**
3944
* Comma-separated list of label names, issues must have all labels to be returned. No+Label lists all issues with no labels.
4045
*/
@@ -157,6 +162,14 @@ public void setState(IssueState state) {
157162
this.state = state;
158163
}
159164

165+
public List<String> getIn() {
166+
return in;
167+
}
168+
169+
public void setIn(List<String> in) {
170+
this.in = in;
171+
}
172+
160173
public List<String> getLabels() {
161174
return labels;
162175
}
@@ -496,6 +509,7 @@ public GitLabApiForm getQueryParams() {
496509
.withParam("iids", iids)
497510
.withParam("state", state)
498511
.withParam("labels", (labels != null ? String.join(",", labels) : null))
512+
.withParam("in", (in != null ? String.join(",", in) : null))
499513
.withParam("milestone", milestone)
500514
.withParam("scope", scope)
501515
.withParam("author_id", authorId)

0 commit comments

Comments
 (0)