Implemented anime list basics

This commit is contained in:
2017-06-08 21:54:39 +02:00
parent 4f7ef694c8
commit cacb804a19
10 changed files with 86 additions and 7 deletions

View File

@ -27,5 +27,7 @@ func Get(ctx *aero.Context) string {
threads = threads[:maxPosts]
}
return ctx.HTML(components.Profile(viewUser, user, threads))
animeList := viewUser.AnimeList()
return ctx.HTML(components.Profile(viewUser, user, animeList, threads))
}