23 lines
472 B
Go
Raw Normal View History

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.
2019-06-01 04:55:49 +00:00
func Get(ctx aero.Context) error {
2017-07-22 13:04:54 +00:00
user := utils.GetUser(ctx)
if user == nil {
return frontpage.Get(ctx)
}
2018-11-15 03:42:10 +00:00
if !user.HasBasicInfo() {
return utils.SmartRedirect(ctx, "/welcome")
}
return utils.SmartRedirect(ctx, "/+"+user.Nick+"/animelist/watching")
2017-07-22 13:04:54 +00:00
}