Allow updating draft releases while keeping them as draft

Closes #162
This commit is contained in:
Sandro Santilli 2016-11-14 17:30:22 +01:00
parent 81f227eace
commit cd339263d9
2 changed files with 11 additions and 3 deletions

View file

@ -247,6 +247,7 @@ func EditRelease(ctx *context.Context) {
ctx.Data["title"] = rel.Title
ctx.Data["content"] = rel.Note
ctx.Data["prerelease"] = rel.IsPrerelease
ctx.Data["IsDraft"] = rel.IsDraft
ctx.HTML(200, RELEASE_NEW)
}