24 lines
523 B
Go
Raw Normal View History

2018-04-14 23:51:18 +02:00
package amv
import (
"net/http"
"github.com/aerogo/aero"
2019-06-03 18:32:43 +09:00
"github.com/animenotifier/notify.moe/arn"
2018-04-14 23:51:18 +02:00
"github.com/animenotifier/notify.moe/components"
"github.com/animenotifier/notify.moe/utils/editform"
)
// Edit track.
2019-06-01 13:55:49 +09:00
func Edit(ctx aero.Context) error {
2018-04-14 23:51:18 +02:00
id := ctx.Get("id")
amv, err := arn.GetAMV(id)
2019-11-17 16:59:34 +09:00
user := arn.GetUserFromContext(ctx)
2018-04-14 23:51:18 +02:00
if err != nil {
return ctx.Error(http.StatusNotFound, "AMV not found", err)
}
return ctx.HTML(components.AMVTabs(amv, user) + editform.Render(amv, "Edit AMV", user))
}