diff options
Diffstat (limited to 'modules/auth')
-rw-r--r-- | modules/auth/repo_form.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/auth/repo_form.go b/modules/auth/repo_form.go index 3be8e0f8..d15135c9 100644 --- a/modules/auth/repo_form.go +++ b/modules/auth/repo_form.go @@ -98,8 +98,8 @@ func (f *NewSlackHookForm) Validate(ctx *macaron.Context, errs binding.Errors) b // \/ \/ \/ type CreateIssueForm struct { - Title string `binding:"Required;MaxSize(255)"` - LabelIDs []int64 `form:"label_id"` + Title string `binding:"Required;MaxSize(255)"` + LabelIDs string `form:"label_ids"` MilestoneID int64 AssigneeID int64 Content string |