diff options
author | Ethan Koenig <etk39@cornell.edu> | 2017-01-06 22:13:02 -0500 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2017-01-07 11:13:02 +0800 |
commit | 8422ab542c69592b4629188d4460ca560307465b (patch) | |
tree | aa0d36b3584c3579a7385d194dcbc79115dd6340 /routers/api/v1/api.go | |
parent | 03b45284e1845f81d996c7f1cb059e8a8eebfe29 (diff) | |
download | gitea-8422ab542c69592b4629188d4460ca560307465b.tar.gz gitea-8422ab542c69592b4629188d4460ca560307465b.zip |
API endpoint for subscribers (#598)
Diffstat (limited to 'routers/api/v1/api.go')
-rw-r--r-- | routers/api/v1/api.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/routers/api/v1/api.go b/routers/api/v1/api.go index cc773150e6..69b9a272e0 100644 --- a/routers/api/v1/api.go +++ b/routers/api/v1/api.go @@ -327,6 +327,7 @@ func RegisterRoutes(m *macaron.Macaron) { Delete(reqRepoWriter(), repo.DeleteMilestone) }) m.Get("/stargazers", repo.ListStargazers) + m.Get("/subscribers", repo.ListSubscribers) m.Group("/subscription", func() { m.Get("", user.IsWatching) m.Put("", user.Watch) |