21 lines
380 B
Go
Raw Normal View History

2017-10-04 06:12:12 +00:00
package charge
import (
"net/http"
"github.com/aerogo/aero"
2019-11-17 07:59:34 +00:00
"github.com/animenotifier/notify.moe/arn"
"github.com/animenotifier/notify.moe/components"
2017-10-04 06:12:12 +00:00
)
// Get charge page.
2019-06-01 04:55:49 +00:00
func Get(ctx aero.Context) error {
2019-11-17 07:59:34 +00:00
user := arn.GetUserFromContext(ctx)
2017-10-04 06:12:12 +00:00
if user == nil {
2018-07-07 03:42:00 +00:00
return ctx.Error(http.StatusUnauthorized, "Not logged in")
2017-10-04 06:12:12 +00:00
}
2017-10-05 08:26:07 +00:00
return ctx.HTML(components.Charge(user))
2017-10-04 06:12:12 +00:00
}