26 lines
490 B
Go
Raw Normal View History

2017-10-20 14:52:07 +00:00
package anime
import (
"net/http"
"github.com/animenotifier/notify.moe/utils"
2017-10-20 14:52:07 +00:00
"github.com/animenotifier/notify.moe/components"
"github.com/aerogo/aero"
"github.com/animenotifier/arn"
)
// Characters ...
func Characters(ctx *aero.Context) string {
id := ctx.Get("id")
user := utils.GetUser(ctx)
2017-10-20 14:52:07 +00:00
anime, err := arn.GetAnime(id)
if err != nil {
return ctx.Error(http.StatusNotFound, "Anime not found", err)
}
return ctx.HTML(components.AnimeCharacters(anime, user, true))
2017-10-20 14:52:07 +00:00
}