2017-06-18 15:16:40 +00:00
|
|
|
package admin
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/aerogo/aero"
|
|
|
|
"github.com/animenotifier/notify.moe/components"
|
|
|
|
"github.com/animenotifier/notify.moe/utils"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Get admin page.
|
|
|
|
func Get(ctx *aero.Context) string {
|
|
|
|
user := utils.GetUser(ctx)
|
|
|
|
|
|
|
|
if user == nil || user.Role != "admin" {
|
|
|
|
return ctx.Redirect("/")
|
|
|
|
}
|
|
|
|
|
2017-07-01 12:03:10 +00:00
|
|
|
return ctx.HTML(components.Admin(user))
|
2017-06-18 15:16:40 +00:00
|
|
|
}
|