25 lines
559 B
Go
Raw Normal View History

2018-04-14 21:51:18 +00:00
package amv
import (
"net/http"
"github.com/aerogo/aero"
2019-06-03 09:32:43 +00:00
"github.com/animenotifier/notify.moe/arn"
2018-04-14 21:51:18 +00:00
"github.com/animenotifier/notify.moe/components"
"github.com/animenotifier/notify.moe/utils"
"github.com/animenotifier/notify.moe/utils/editform"
)
// Edit track.
2019-06-01 04:55:49 +00:00
func Edit(ctx aero.Context) error {
2018-04-14 21:51:18 +00:00
id := ctx.Get("id")
amv, err := arn.GetAMV(id)
user := utils.GetUser(ctx)
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))
}