24 lines
462 B
Go
Raw Normal View History

2017-10-20 16:52:07 +02:00
package anime
import (
"net/http"
"github.com/animenotifier/notify.moe/components"
"github.com/aerogo/aero"
2019-06-03 18:32:43 +09:00
"github.com/animenotifier/notify.moe/arn"
2017-10-20 16:52:07 +02:00
)
// Characters ...
2019-06-01 13:55:49 +09:00
func Characters(ctx aero.Context) error {
2017-10-20 16:52:07 +02:00
id := ctx.Get("id")
2019-11-17 16:59:34 +09:00
user := arn.GetUserFromContext(ctx)
2017-10-20 16:52:07 +02: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 16:52:07 +02:00
}