Added basic AMV routes

This commit is contained in:
2018-04-14 23:23:00 +02:00
parent 854833c586
commit d19542b5aa
6 changed files with 65 additions and 3 deletions

View File

@ -2,9 +2,20 @@ package amvs
import (
"github.com/aerogo/aero"
"github.com/animenotifier/notify.moe/components"
"github.com/animenotifier/notify.moe/utils"
)
// Get AMVs.
func Get(ctx *aero.Context) string {
return ctx.HTML("Coming soon™.")
// Latest AMVs.
func Latest(ctx *aero.Context) string {
user := utils.GetUser(ctx)
return ctx.HTML(components.AMVs(nil, -1, "", user))
}
// Best AMVs.
func Best(ctx *aero.Context) string {
user := utils.GetUser(ctx)
return ctx.HTML(components.AMVs(nil, -1, "", user))
}