21 lines
411 B
Go

package settings
import (
"net/http"
"github.com/aerogo/aero"
"github.com/animenotifier/notify.moe/components"
"github.com/animenotifier/notify.moe/utils"
)
// Get user settings page.
func Get(ctx *aero.Context) string {
user := utils.GetUser(ctx)
if user == nil {
return ctx.Error(http.StatusForbidden, "Not logged in", nil)
}
return utils.AllowEmbed(ctx, ctx.HTML(components.Settings(user)))
}