21 lines
378 B
Go

package listimport
import (
"net/http"
"github.com/aerogo/aero"
"github.com/animenotifier/notify.moe/arn"
"github.com/animenotifier/notify.moe/components"
)
// Get ...
func Get(ctx aero.Context) error {
user := arn.GetUserFromContext(ctx)
if user == nil {
return ctx.Error(http.StatusBadRequest, "Not logged in")
}
return ctx.HTML(components.ImportLists(user))
}