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
24d2f7e1
Unverified
Commit
24d2f7e1
authored
May 15, 2024
by
charliedough
Committed by
GitHub
May 15, 2024
Browse files
Update ProjectApi to allow topic removal (#1120)
parent
fcecb0b2
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/org/gitlab4j/api/ProjectApi.java
View file @
24d2f7e1
...
...
@@ -1360,7 +1360,7 @@ public class ProjectApi extends AbstractApi implements Constants {
formData
.
withParam
(
"tag_list"
,
String
.
join
(
","
,
project
.
getTagList
()));
}
if
(
project
.
getTopics
()
!=
null
&&
!
project
.
getTopics
().
isEmpty
()
)
{
if
(
project
.
getTopics
()
!=
null
)
{
formData
.
withParam
(
"topics"
,
String
.
join
(
","
,
project
.
getTopics
()));
}
}
...
...
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