Add feed route

This commit is contained in:
Scott Ferguson 2014-11-11 10:01:10 -06:00
parent 44518e2015
commit fa003af8cf

View file

@ -61,6 +61,7 @@ func New() *web.Mux {
user := web.New()
user.Use(middleware.RequireUser)
user.Get("/api/user/feed", handler.GetUserFeed)
user.Get("/api/user/activity", handler.GetUserActivity)
user.Get("/api/user/repos", handler.GetUserRepos)
user.Post("/api/user/sync", handler.PostUserSync)
user.Get("/api/user", handler.GetUserCurrent)