without "reqToken()" api works ...

* should be still secure beause ctx.user has to be there or nothing will hapen
pull/8729/head
6543 5 years ago
parent 1aced19838
commit 7c24ae37b8
No known key found for this signature in database
GPG Key ID: A1CA74D27FD13271

@ -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…
Cancel
Save