Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
J
java-gitlab-api
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
沈俊林
java-gitlab-api
Commits
2244e4b6
Commit
2244e4b6
authored
Dec 12, 2016
by
Marco Andreini
Committed by
Tim Olshansky
Dec 12, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Milestone is not more required creating issue. (#175)
parent
b207ac92
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
14 deletions
+14
-14
GitlabAPI.java
src/main/java/org/gitlab/api/GitlabAPI.java
+14
-14
No files found.
src/main/java/org/gitlab/api/GitlabAPI.java
View file @
2244e4b6
...
@@ -1407,7 +1407,7 @@ public class GitlabAPI {
...
@@ -1407,7 +1407,7 @@ public class GitlabAPI {
return
retrieve
().
to
(
tailUrl
,
GitlabIssue
.
class
);
return
retrieve
().
to
(
tailUrl
,
GitlabIssue
.
class
);
}
}
public
GitlabIssue
createIssue
(
int
projectId
,
int
assigneeId
,
int
milestoneId
,
String
labels
,
public
GitlabIssue
createIssue
(
int
projectId
,
int
assigneeId
,
Integer
milestoneId
,
String
labels
,
String
description
,
String
title
)
throws
IOException
{
String
description
,
String
title
)
throws
IOException
{
String
tailUrl
=
GitlabProject
.
URL
+
"/"
+
projectId
+
GitlabIssue
.
URL
;
String
tailUrl
=
GitlabProject
.
URL
+
"/"
+
projectId
+
GitlabIssue
.
URL
;
GitlabHTTPRequestor
requestor
=
dispatch
();
GitlabHTTPRequestor
requestor
=
dispatch
();
...
@@ -1437,7 +1437,7 @@ public class GitlabAPI {
...
@@ -1437,7 +1437,7 @@ public class GitlabAPI {
}
}
private
void
applyIssue
(
GitlabHTTPRequestor
requestor
,
int
projectId
,
private
void
applyIssue
(
GitlabHTTPRequestor
requestor
,
int
projectId
,
int
assigneeId
,
int
milestoneId
,
String
labels
,
String
description
,
int
assigneeId
,
Integer
milestoneId
,
String
labels
,
String
description
,
String
title
)
{
String
title
)
{
requestor
.
with
(
"title"
,
title
)
requestor
.
with
(
"title"
,
title
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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