Added notifications overview

This commit is contained in:
2018-02-27 15:27:16 +01:00
parent d5b01763bb
commit c170bef1ea
4 changed files with 63 additions and 2 deletions

View File

@ -42,9 +42,9 @@ import (
"github.com/animenotifier/notify.moe/pages/popular"
"github.com/animenotifier/notify.moe/pages/posts"
"github.com/animenotifier/notify.moe/pages/profile"
"github.com/animenotifier/notify.moe/pages/recommended"
"github.com/animenotifier/notify.moe/pages/quote"
"github.com/animenotifier/notify.moe/pages/quotes"
"github.com/animenotifier/notify.moe/pages/recommended"
"github.com/animenotifier/notify.moe/pages/search"
"github.com/animenotifier/notify.moe/pages/settings"
"github.com/animenotifier/notify.moe/pages/shop"
@ -143,6 +143,9 @@ func Configure(app *aero.Application) {
l.Page("/group/:id/edit", group.Edit)
l.Page("/group/:id/forum", group.Forum)
// Notifications
l.Page("/notifications", notifications.All)
// User profiles
l.Page("/user", user.Get)
l.Page("/user/:nick", profile.Get)