diff options
author | Unknwon <u@gogs.io> | 2016-03-05 20:45:23 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2016-03-05 20:45:23 -0500 |
commit | a5b0400be7c8868b685403e0718bdd66149c3e84 (patch) | |
tree | 6db3f4999fa43e0b8a384ca4da8885aa00a4de8f /models/issue_comment.go | |
parent | 045f14fbd0e3553521f5092cf839be363c74a090 (diff) | |
download | gitea-a5b0400be7c8868b685403e0718bdd66149c3e84.tar.gz gitea-a5b0400be7c8868b685403e0718bdd66149c3e84.zip |
#1146 finish new access rights for collaborators
Diffstat (limited to 'models/issue_comment.go')
-rw-r--r-- | models/issue_comment.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/models/issue_comment.go b/models/issue_comment.go index e1230d8136..e63b39085b 100644 --- a/models/issue_comment.go +++ b/models/issue_comment.go @@ -39,7 +39,7 @@ type CommentTag int const ( COMMENT_TAG_NONE CommentTag = iota COMMENT_TAG_POSTER - COMMENT_TAG_ADMIN + COMMENT_TAG_WRITER COMMENT_TAG_OWNER ) |