File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -37,9 +37,9 @@ type EditIssueCommentOption struct {
37
37
}
38
38
39
39
type CommentReaction struct {
40
- Reaction string `json:"reaction""`
41
- Users []* string `json:"users"`
42
- Count int64 `json:"count"`
40
+ Reaction string `json:"reaction""`
41
+ Users []* string `json:"users"`
42
+ Count int64 `json:"count"`
43
43
}
44
44
45
45
type CommentReactionList []* CommentReaction
Original file line number Diff line number Diff line change @@ -669,7 +669,7 @@ func RegisterRoutes(m *macaron.Macaron) {
669
669
m .Combo ("" ).Get (repo .ListIssueComments ).
670
670
Post (reqToken (), mustNotBeArchived , bind (api.CreateIssueCommentOption {}), repo .CreateIssueComment )
671
671
m .Group ("/:id" , func () {
672
- m .Combo ("" ,reqToken ()).
672
+ m .Combo ("" , reqToken ()).
673
673
Patch (bind (api.EditIssueCommentOption {}), repo .EditIssueCommentDeprecated ).
674
674
Delete (repo .DeleteIssueCommentDeprecated )
675
675
m .Combo ("/reactions" ).
You can’t perform that action at this time.
0 commit comments