Added activity feed

This commit is contained in:
2018-10-31 14:27:48 +09:00
parent 8e1578f2cb
commit 97c8f99499
14 changed files with 93 additions and 19 deletions

View File

@ -2,6 +2,7 @@ package coreroutes
import (
"github.com/aerogo/layout"
"github.com/animenotifier/notify.moe/pages/activity"
"github.com/animenotifier/notify.moe/pages/calendar"
"github.com/animenotifier/notify.moe/pages/embed"
"github.com/animenotifier/notify.moe/pages/home"
@ -18,6 +19,9 @@ func Register(l *layout.Layout) {
// Login
l.Page("/login", login.Get)
// Activity
l.Page("/activity", activity.Get)
// Calendar
l.Page("/calendar", calendar.Get)