diff --git a/progit/forms.py b/progit/forms.py index 6e33ffa..e7a70c5 100644 --- a/progit/forms.py +++ b/progit/forms.py @@ -76,6 +76,14 @@ class AddIssueTagForm(wtf.Form): ) +class AddIssueAssigneeForm(wtf.Form): + ''' Form to add a tag to an issue. ''' + assignee = wtforms.TextField( + 'assignee*', + [wtforms.validators.Required()] + ) + + class AddPullRequestCommentForm(wtf.Form): ''' Form to add a comment to a pull-request. ''' commit = wtforms.HiddenField('commit identifier')