2017-07-22 13:04:54 +00:00
|
|
|
package home
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/aerogo/aero"
|
|
|
|
"github.com/animenotifier/notify.moe/pages/frontpage"
|
|
|
|
"github.com/animenotifier/notify.moe/utils"
|
|
|
|
)
|
|
|
|
|
2017-07-22 14:31:25 +00:00
|
|
|
// Get the anime list or the frontpage when logged out.
|
2017-07-22 13:04:54 +00:00
|
|
|
func Get(ctx *aero.Context) string {
|
|
|
|
user := utils.GetUser(ctx)
|
|
|
|
|
|
|
|
if user == nil {
|
|
|
|
return frontpage.Get(ctx)
|
|
|
|
}
|
|
|
|
|
2017-09-22 18:10:37 +00:00
|
|
|
return ctx.Redirect("/animelist/watching")
|
|
|
|
//return AnimeList(ctx, user, arn.AnimeListStatusWatching)
|
2017-07-22 13:04:54 +00:00
|
|
|
}
|