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
d0a7d1b5
Commit
d0a7d1b5
authored
Feb 07, 2019
by
Greg Messner
Browse files
Added support for creating and resolving merge request discussions (#291).
parent
0e8f58f2
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
src/main/java/org/gitlab4j/api/DiscussionsApi.java
View file @
d0a7d1b5
This diff is collapsed.
Click to expand it.
src/main/java/org/gitlab4j/api/models/Note.java
View file @
d0a7d1b5
...
...
@@ -105,6 +105,8 @@ public class Note {
private
Participant
resolvedBy
;
private
Type
type
;
private
Position
position
;
public
String
getAttachment
()
{
return
attachment
;
}
...
...
@@ -257,6 +259,14 @@ public class Note {
this
.
type
=
type
;
}
public
Position
getPosition
()
{
return
position
;
}
public
void
setPosition
(
Position
position
)
{
this
.
position
=
position
;
}
@Override
public
String
toString
()
{
return
(
JacksonJson
.
toJsonString
(
this
));
...
...
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