1
0
Fork 0
forked from forgejo/forgejo

Merge pull request #539 from andreynering/notifications-step-2

Notifications - Step 2
This commit is contained in:
Andrey Nering 2017-01-05 11:53:01 -02:00 committed by GitHub
commit 79d527195d
10 changed files with 233 additions and 6 deletions

View file

@ -167,6 +167,8 @@ func runWeb(ctx *cli.Context) error {
bindIgnErr := binding.BindIgnErr
m.Use(user.GetNotificationCount)
// FIXME: not all routes need go through same middlewares.
// Especially some AJAX requests, we can reduce middleware number to improve performance.
// Routers.
@ -577,6 +579,8 @@ func runWeb(ctx *cli.Context) error {
})
// ***** END: Repository *****
m.Get("/notifications", reqSignIn, user.Notifications)
m.Group("/api", func() {
apiv1.RegisterRoutes(m)
}, ignSignIn)