Skip to content
GitLab
Explore
Projects
Groups
Snippets
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
佳 邓
Gitlab4j Api
Commits
cac22673
Unverified
Commit
cac22673
authored
4 years ago
by
Gautier de Saint Martin Lacaze
Committed by
GitHub
4 years ago
Browse files
Options
Download
Plain Diff
Merge pull request #671 from gitlab4j/issue-612
fix: #612 Update path for delete commit discussion note
parents
750213b9
d4b7624e
main
5.0.x
5.0.x.jdk17
6.x
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
pom.xml
+6
-1
pom.xml
src/main/java/org/gitlab4j/api/DiscussionsApi.java
+1
-1
src/main/java/org/gitlab4j/api/DiscussionsApi.java
with
7 additions
and
2 deletions
+7
-2
pom.xml
+
6
-
1
View file @
cac22673
...
...
@@ -35,6 +35,11 @@
<name>
Greg Messner
</name>
<email>
greg@messners.com
</email>
</developer>
<developer>
<id>
gdesaintmartinlacaze
</id>
<name>
Gautier de Saint Martin Lacaze
</name>
<email>
gautier@jabby-techs.fr
</email>
</developer>
</developers>
<properties>
...
...
@@ -56,7 +61,7 @@
<systemRules.version>
1.19.0
</systemRules.version>
<changelog-lib.version>
1.59
</changelog-lib.version>
<bnd.version>
5.
0.1
</bnd.version>
<bnd.version>
5.
3.0
</bnd.version>
<gitlab.version>
12.9.2-ce.0
</gitlab.version>
<gitlab.autoremove-container>
true
</gitlab.autoremove-container>
...
...
This diff is collapsed.
Click to expand it.
src/main/java/org/gitlab4j/api/DiscussionsApi.java
+
1
-
1
View file @
cac22673
...
...
@@ -603,7 +603,7 @@ public class DiscussionsApi extends AbstractApi {
public
void
deleteCommitDiscussionNote
(
Object
projectIdOrPath
,
String
commitSha
,
String
discussionId
,
Integer
noteId
)
throws
GitLabApiException
{
delete
(
Response
.
Status
.
OK
,
null
,
"projects"
,
getProjectIdOrPath
(
projectIdOrPath
),
"repository"
,
commitSha
,
"discussions"
,
discussionId
,
"notes"
,
noteId
);
"repository"
,
"commits"
,
commitSha
,
"discussions"
,
discussionId
,
"notes"
,
noteId
);
}
/**
...
...
This diff is collapsed.
Click to expand it.
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
Menu
Explore
Projects
Groups
Snippets