We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0028d7e commit ef3ffb7Copy full SHA for ef3ffb7
src/main/java/org/gitlab4j/api/models/MarkdownRequest.java
@@ -7,12 +7,19 @@ public class MarkdownRequest implements Serializable {
7
8
private String text;
9
private boolean gfm;
10
+ private String project;
11
12
public MarkdownRequest(String text, boolean gfm) {
13
this.text = text;
14
this.gfm = gfm;
15
}
16
17
+ public MarkdownRequest(String text, boolean gfm, String project) {
18
+ this.text = text;
19
+ this.gfm = gfm;
20
+ this.project = project;
21
+ }
22
+
23
public String getText() {
24
return text;
25
@@ -28,4 +35,12 @@ public boolean isGfm() {
28
35
public void setGfm(boolean gfm) {
29
36
30
37
38
39
+ public String getProject() {
40
+ return project;
41
42
43
+ public void setProject(String project) {
44
45
31
46
0 commit comments