23 lines
439 B
Go
23 lines
439 B
Go
package settings
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/aerogo/aero"
|
|
"github.com/animenotifier/notify.moe/arn"
|
|
"github.com/animenotifier/notify.moe/utils"
|
|
)
|
|
|
|
// Get settings.
|
|
func Get(component func(*arn.User) string) func(aero.Context) error {
|
|
return func(ctx aero.Context) error {
|
|
user := utils.GetUser(ctx)
|
|
|
|
if user == nil {
|
|
return ctx.Error(http.StatusUnauthorized, "Not logged in")
|
|
}
|
|
|
|
return ctx.HTML(component(user))
|
|
}
|
|
}
|