keep sure if assigneeIDs == nil -> do nothing

This commit is contained in:
6543 2019-11-07 18:56:50 +01:00
parent 1f90147f39
commit e72d94129c
No known key found for this signature in database
GPG Key ID: A1CA74D27FD13271
2 changed files with 35 additions and 30 deletions

View File

@ -344,7 +344,7 @@ func CreateIssue(ctx *context.APIContext, form api.CreateIssueOption) {
return
}
// Check if the passed assignees is assignable
if assigneeIDs != nil {
for _, aID := range assigneeIDs {
assignee, err := models.GetUserByID(aID)
if err != nil {
@ -352,6 +352,7 @@ func CreateIssue(ctx *context.APIContext, form api.CreateIssueOption) {
return
}
// Check if the passed assignees is assignable
valid, err := models.CanBeAssigned(assignee, ctx.Repo.Repository, false)
if err != nil {
ctx.Error(500, "canBeAssigned", err)
@ -362,6 +363,7 @@ func CreateIssue(ctx *context.APIContext, form api.CreateIssueOption) {
return
}
}
}
} else {
// setting labels is not allowed if user is not a writer
form.Labels = make([]int64, 0)

View File

@ -286,7 +286,8 @@ func CreatePullRequest(ctx *context.APIContext, form api.CreatePullRequestOption
}
return
}
// Check if the passed assignees is assignable
if assigneeIDs != nil {
for _, aID := range assigneeIDs {
assignee, err := models.GetUserByID(aID)
if err != nil {
@ -294,6 +295,7 @@ func CreatePullRequest(ctx *context.APIContext, form api.CreatePullRequestOption
return
}
// Check if the passed assignees is assignable
valid, err := models.CanBeAssigned(assignee, repo, true)
if err != nil {
ctx.Error(500, "canBeAssigned", err)
@ -304,6 +306,7 @@ func CreatePullRequest(ctx *context.APIContext, form api.CreatePullRequestOption
return
}
}
}
if err := pull_service.NewPullRequest(repo, prIssue, labelIDs, []string{}, pr, patch, assigneeIDs); err != nil {
if models.IsErrUserDoesNotHaveAccessToRepo(err) {