2018-03-04 15:53:42 +00:00
|
|
|
package support
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/aerogo/aero"
|
|
|
|
"github.com/animenotifier/notify.moe/components"
|
|
|
|
"github.com/animenotifier/notify.moe/utils"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Get support page.
|
|
|
|
func Get(ctx *aero.Context) string {
|
|
|
|
user := utils.GetUser(ctx)
|
2018-03-16 14:02:13 +00:00
|
|
|
profileLink := "/"
|
2018-03-04 15:53:42 +00:00
|
|
|
|
2018-03-16 14:02:13 +00:00
|
|
|
if user != nil {
|
|
|
|
profileLink = "/+" + user.Nick
|
2018-03-04 15:53:42 +00:00
|
|
|
}
|
|
|
|
|
2018-03-16 14:02:13 +00:00
|
|
|
return ctx.HTML(components.Support(profileLink, user))
|
2018-03-04 15:53:42 +00:00
|
|
|
}
|