21 lines
377 B
Go
Raw Normal View History

2017-06-27 02:15:52 +00:00
package newthread
import (
"net/http"
"github.com/aerogo/aero"
"github.com/animenotifier/notify.moe/components"
"github.com/animenotifier/notify.moe/utils"
)
// Get forums page.
2019-06-01 04:55:49 +00:00
func Get(ctx aero.Context) error {
2017-06-27 02:15:52 +00:00
user := utils.GetUser(ctx)
if user == nil {
2018-07-07 03:42:00 +00:00
return ctx.Error(http.StatusBadRequest, "Not logged in")
2017-06-27 02:15:52 +00:00
}
return ctx.HTML(components.NewThread(user))
}