File tree 2 files changed +11
-1
lines changed
main/java/org/gitlab4j/api/models
test/resources/org/gitlab4j/api
2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ public class PushRules implements Serializable {
21
21
private String fileNameRegex ;
22
22
private Integer maxFileSize ;
23
23
private Boolean commitCommitterCheck ;
24
+ private Boolean commitCommitterNameCheck ;
24
25
private Boolean rejectUnsignedCommits ;
25
26
26
27
public Long getId () {
@@ -173,6 +174,14 @@ public Boolean getCommitCommitterCheck() {
173
174
return commitCommitterCheck ;
174
175
}
175
176
177
+ public Boolean getCommitCommitterNameCheck () {
178
+ return commitCommitterNameCheck ;
179
+ }
180
+
181
+ public void setCommitCommitterNameCheck (Boolean commitCommitterNameCheck ) {
182
+ this .commitCommitterNameCheck = commitCommitterNameCheck ;
183
+ }
184
+
176
185
public void setCommitCommitterCheck (Boolean commitCommitterCheck ) {
177
186
this .commitCommitterCheck = commitCommitterCheck ;
178
187
}
Original file line number Diff line number Diff line change 12
12
"file_name_regex" : " " ,
13
13
"max_file_size" : 5 ,
14
14
"commit_committer_check" : false ,
15
+ "commit_committer_name_check" : false ,
15
16
"reject_unsigned_commits" : false
16
- }
17
+ }
You can’t perform that action at this time.
0 commit comments