diff options
author | Unknwon <u@gogs.io> | 2015-11-27 01:50:38 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-11-27 01:50:38 -0500 |
commit | e42fcb033d4a7ee44fe397be3e933d7031b7d8f7 (patch) | |
tree | a203fff39c92f947c4585a746e2345b3ebc67b3c /modules/middleware/context.go | |
parent | 392f3ee21016476fb9794f78882d6c447acb8449 (diff) | |
download | gitea-e42fcb033d4a7ee44fe397be3e933d7031b7d8f7.tar.gz gitea-e42fcb033d4a7ee44fe397be3e933d7031b7d8f7.zip |
wiki: finish edit
Diffstat (limited to 'modules/middleware/context.go')
-rw-r--r-- | modules/middleware/context.go | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/modules/middleware/context.go b/modules/middleware/context.go index 4b217b6349..4f7c438382 100644 --- a/modules/middleware/context.go +++ b/modules/middleware/context.go @@ -59,7 +59,7 @@ type Context struct { IsSigned bool IsBasicAuth bool - Repo RepoContext + Repo *RepoContext Org struct { IsOwner bool @@ -73,17 +73,22 @@ type Context struct { } // IsOwner returns true if current user is the owner of repository. -func (r RepoContext) IsOwner() bool { +func (r *RepoContext) IsOwner() bool { return r.AccessMode >= models.ACCESS_MODE_OWNER } // IsAdmin returns true if current user has admin or higher access of repository. -func (r RepoContext) IsAdmin() bool { +func (r *RepoContext) IsAdmin() bool { return r.AccessMode >= models.ACCESS_MODE_ADMIN } +// IsPusher returns true if current user has write or higher access of repository. +func (r *RepoContext) IsPusher() bool { + return r.AccessMode >= models.ACCESS_MODE_WRITE +} + // Return if the current user has read access for this repository -func (r RepoContext) HasAccess() bool { +func (r *RepoContext) HasAccess() bool { return r.AccessMode >= models.ACCESS_MODE_READ } |