diff options
Diffstat (limited to 'routers/api/v1/repo')
-rw-r--r-- | routers/api/v1/repo/label.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/api/v1/repo/label.go b/routers/api/v1/repo/label.go index c22db517c3..c932fb1585 100644 --- a/routers/api/v1/repo/label.go +++ b/routers/api/v1/repo/label.go @@ -64,7 +64,7 @@ func CreateLabel(ctx *context.APIContext, form api.CreateLabelOption) { Color: form.Color, RepoID: ctx.Repo.Repository.ID, } - if err := models.NewLabels(label); err != nil { + if err := models.NewLabel(label); err != nil { ctx.Error(500, "NewLabel", err) return } |