Reserve routes for upcoming notification feeds

This commit is contained in:
2018-10-17 09:20:45 +09:00
parent af89e329c4
commit 89adf2942e
2 changed files with 29 additions and 0 deletions

View File

@ -13,6 +13,7 @@ import (
"github.com/animenotifier/notify.moe/pages/editor/jobs"
"github.com/animenotifier/notify.moe/pages/me"
"github.com/animenotifier/notify.moe/pages/notifications"
"github.com/animenotifier/notify.moe/pages/notifications/feed"
"github.com/animenotifier/notify.moe/pages/popular"
"github.com/animenotifier/notify.moe/pages/soundtrack"
"github.com/animenotifier/notify.moe/pages/upload"
@ -49,4 +50,9 @@ func Register(l *layout.Layout, app *aero.Application) {
// Jobs
app.Post("/api/job/:job/start", jobs.Start)
// Feed
app.Get("/api/user/:id/notifications/feed", notificationsfeed.JSON)
app.Get("/api/user/:id/notifications/feed/atom", notificationsfeed.Atom)
app.Get("/api/user/:id/notifications/feed/rss", notificationsfeed.RSS)
}