Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
佳 邓
Gitlab4j Api
Commits
cefb3fb2
Commit
cefb3fb2
authored
Feb 05, 2024
by
Jeremie Bresson
Browse files
Merge remote-tracking branch 'origin/main' into 6.x
parents
856d7e33
ef3ffb73
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/org/gitlab4j/api/models/MarkdownRequest.java
View file @
cefb3fb2
...
...
@@ -7,12 +7,19 @@ public class MarkdownRequest implements Serializable {
private
String
text
;
private
boolean
gfm
;
private
String
project
;
public
MarkdownRequest
(
String
text
,
boolean
gfm
)
{
this
.
text
=
text
;
this
.
gfm
=
gfm
;
}
public
MarkdownRequest
(
String
text
,
boolean
gfm
,
String
project
)
{
this
.
text
=
text
;
this
.
gfm
=
gfm
;
this
.
project
=
project
;
}
public
String
getText
()
{
return
text
;
}
...
...
@@ -28,4 +35,12 @@ public class MarkdownRequest implements Serializable {
public
void
setGfm
(
boolean
gfm
)
{
this
.
gfm
=
gfm
;
}
public
String
getProject
()
{
return
project
;
}
public
void
setProject
(
String
project
)
{
this
.
project
=
project
;
}
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment