24 lines
467 B
Go
Raw Normal View History

2017-10-18 21:17:54 +00:00
package group
import (
"net/http"
"github.com/aerogo/aero"
"github.com/animenotifier/arn"
"github.com/animenotifier/notify.moe/components"
2018-03-06 23:36:04 +00:00
"github.com/animenotifier/notify.moe/utils"
2017-10-18 21:17:54 +00:00
)
// Forum ...
func Forum(ctx *aero.Context) string {
2018-03-06 23:36:04 +00:00
user := utils.GetUser(ctx)
2017-10-18 21:17:54 +00:00
id := ctx.Get("id")
group, err := arn.GetGroup(id)
if err != nil {
return ctx.Error(http.StatusNotFound, "Group not found", err)
}
2018-03-06 23:36:04 +00:00
return ctx.HTML(components.GroupForum(group, user))
2017-10-18 21:17:54 +00:00
}