Added anime comments

This commit is contained in:
2018-11-01 14:45:16 +09:00
parent 3ad4faf38a
commit 5866683811
7 changed files with 46 additions and 2 deletions

24
pages/anime/comments.go Normal file
View File

@ -0,0 +1,24 @@
package anime
import (
"net/http"
"github.com/animenotifier/notify.moe/components"
"github.com/animenotifier/notify.moe/utils"
"github.com/aerogo/aero"
"github.com/animenotifier/arn"
)
// Comments ...
func Comments(ctx *aero.Context) string {
user := utils.GetUser(ctx)
id := ctx.Get("id")
anime, err := arn.GetAnime(id)
if err != nil {
return ctx.Error(http.StatusNotFound, "Anime not found", err)
}
return ctx.HTML(components.AnimeComments(anime, user, true))
}