diff options
author | Jonas Franz <info@jonasfranz.software> | 2018-10-22 22:13:35 +0200 |
---|---|---|
committer | techknowlogick <hello@techknowlogick.com> | 2018-10-22 16:13:35 -0400 |
commit | f38fce916ec92cb9ac9fe78fb5284bc8b55a726f (patch) | |
tree | 6516aead70b3ea1a95d9ff1aa42669c07a4d24dd /modules | |
parent | 9458880c068c985692a49caf608f0057c73790bf (diff) | |
download | gitea-f38fce916ec92cb9ac9fe78fb5284bc8b55a726f.tar.gz gitea-f38fce916ec92cb9ac9fe78fb5284bc8b55a726f.zip |
Add comment replies (#5104)
* Add comment replies
* Replace reviewID with review.ID
Diffstat (limited to 'modules')
-rw-r--r-- | modules/auth/repo_form.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/auth/repo_form.go b/modules/auth/repo_form.go index a819a60491..a4a00d53b4 100644 --- a/modules/auth/repo_form.go +++ b/modules/auth/repo_form.go @@ -377,6 +377,7 @@ type CodeCommentForm struct { Line int64 TreePath string `form:"path" binding:"Required"` IsReview bool `form:"is_review"` + Reply int64 `form:"reply"` } // Validate validates the fields |