21 lines
388 B
Go
Raw Normal View History

2018-11-15 03:42:10 +00:00
package welcome
import (
"net/http"
"github.com/aerogo/aero"
"github.com/animenotifier/notify.moe/components"
"github.com/animenotifier/notify.moe/utils"
)
// Get returns the welcome page.
2019-06-01 04:55:49 +00:00
func Get(ctx aero.Context) error {
2018-11-15 03:42:10 +00:00
user := utils.GetUser(ctx)
if user == nil {
return ctx.Error(http.StatusUnauthorized, "Not logged in")
}
return ctx.HTML(components.Welcome(user))
}