aboutsummaryrefslogtreecommitdiffstats
path: root/routers/repo/release.go
diff options
context:
space:
mode:
Diffstat (limited to 'routers/repo/release.go')
-rw-r--r--routers/repo/release.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/routers/repo/release.go b/routers/repo/release.go
index bae87efdcd..5a869520f0 100644
--- a/routers/repo/release.go
+++ b/routers/repo/release.go
@@ -1,4 +1,5 @@
// Copyright 2014 The Gogs Authors. All rights reserved.
+// Copyright 2018 The Gitea Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
@@ -65,8 +66,11 @@ func Releases(ctx *context.Context) {
limit = 10
}
+ writeAccess := ctx.Repo.CanWrite(models.UnitTypeReleases)
+ ctx.Data["CanCreateRelease"] = writeAccess
+
opts := models.FindReleasesOptions{
- IncludeDrafts: ctx.Repo.IsWriter(),
+ IncludeDrafts: writeAccess,
IncludeTags: true,
}