19 lines
381 B
Go
Raw Normal View History

2017-10-06 20:07:12 +00:00
package editor
import (
"github.com/aerogo/aero"
"github.com/animenotifier/notify.moe/components"
"github.com/animenotifier/notify.moe/utils"
)
// Get ...
func Get(ctx *aero.Context) string {
user := utils.GetUser(ctx)
if user == nil || (user.Role != "admin" && user.Role != "editor") {
return ctx.Redirect("/")
}
2018-03-09 11:38:46 +00:00
return ctx.HTML(components.Editor(ctx.URI(), user))
2017-10-06 20:07:12 +00:00
}