22 lines
381 B
Go
Raw Normal View History

2017-10-04 06:12:12 +00:00
package charge
import (
"net/http"
"github.com/animenotifier/notify.moe/components"
"github.com/aerogo/aero"
"github.com/animenotifier/notify.moe/utils"
)
// Get charge page.
func Get(ctx *aero.Context) string {
user := utils.GetUser(ctx)
if user == nil {
return ctx.Error(http.StatusUnauthorized, "Not logged in", nil)
}
2017-10-05 08:26:07 +00:00
return ctx.HTML(components.Charge(user))
2017-10-04 06:12:12 +00:00
}