Allow custom public files (#782)

* Allow custom public files

* Gofmt code, lots of places not related to this pr
This commit is contained in:
Thomas Boerger 2017-01-28 23:14:56 +01:00 committed by GitHub
parent cc31a21192
commit 78535fb08e
7 changed files with 26 additions and 6 deletions

View file

@ -169,7 +169,7 @@ func NewRelease(ctx *context.Context) {
ctx.Data["Title"] = ctx.Tr("repo.release.new_release")
ctx.Data["PageIsReleaseList"] = true
ctx.Data["tag_target"] = ctx.Repo.Repository.DefaultBranch
renderAttachmentSettings(ctx);
renderAttachmentSettings(ctx)
ctx.HTML(200, tplReleaseNew)
}
@ -250,7 +250,7 @@ func EditRelease(ctx *context.Context) {
ctx.Data["Title"] = ctx.Tr("repo.release.edit_release")
ctx.Data["PageIsReleaseList"] = true
ctx.Data["PageIsEditRelease"] = true
renderAttachmentSettings(ctx);
renderAttachmentSettings(ctx)
tagName := ctx.Params("*")
rel, err := models.GetRelease(ctx.Repo.Repository.ID, tagName)