Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ public class MergeRequestFilter implements Serializable {
*/
private Long authorId;

private String authorUsername;
private Long assigneeId;
private Long reviewerId;
private String myReactionEmoji;
Expand Down Expand Up @@ -271,6 +272,19 @@ public MergeRequestFilter withAuthorId(Long authorId) {
return (this);
}

public String getAuthorUsername() {
return authorUsername;
}

public void setAuthorUsername(String authorUsername) {
this.authorUsername = authorUsername;
}

public MergeRequestFilter withAuthorUsername(String authorUsername) {
this.authorUsername = authorUsername;
return (this);
}

public Long getAssigneeId() {
return assigneeId;
}
Expand Down Expand Up @@ -524,6 +538,7 @@ public GitLabForm getQueryParams() {
.withParam("updated_after", updatedAfter)
.withParam("updated_before", updatedBefore)
.withParam("scope", scope)
.withParam("author_username", authorUsername)
.withParam("assignee_id", assigneeId)
.withParam("reviewer_id", reviewerId)
.withParam("my_reaction_emoji", myReactionEmoji)
Expand Down