20 lines
375 B
Go
Raw Normal View History

2018-03-04 15:53:42 +00:00
package support
import (
"github.com/aerogo/aero"
2019-11-17 07:59:34 +00:00
"github.com/animenotifier/notify.moe/arn"
2018-03-04 15:53:42 +00:00
"github.com/animenotifier/notify.moe/components"
)
// Get support 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)
profileLink := "/"
2018-03-04 15:53:42 +00:00
if user != nil {
profileLink = "/+" + user.Nick
2018-03-04 15:53:42 +00:00
}
return ctx.HTML(components.Support(profileLink, user))
2018-03-04 15:53:42 +00:00
}