without "reqToken()" api works ...
* should be still secure beause ctx.user has to be there or nothing will hapen
This commit is contained in:
parent
1aced19838
commit
7c24ae37b8
1 changed files with 3 additions and 3 deletions
|
@ -689,9 +689,9 @@ func RegisterRoutes(m *macaron.Macaron) {
|
|||
m.Post("/stop", reqToken(), repo.StopIssueStopwatch)
|
||||
})
|
||||
m.Group("/subscriptions", func() {
|
||||
m.Get("", reqToken(), bind(api.User{}), repo.GetIssueWatchers)
|
||||
m.Put("/:user", reqToken(), repo.AddIssueSubscription)
|
||||
m.Delete("/:user", reqToken(), repo.DelIssueSubscription)
|
||||
m.Get("", bind(api.User{}), repo.GetIssueWatchers)
|
||||
m.Put("/:user", repo.AddIssueSubscription)
|
||||
m.Delete("/:user", repo.DelIssueSubscription)
|
||||
})
|
||||
})
|
||||
}, mustEnableIssuesOrPulls)
|
||||
|
|
Loading…
Reference in a new issue