diff options
author | Unknwon <u@gogs.io> | 2016-07-15 21:53:43 +0800 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2016-07-15 21:53:43 +0800 |
commit | 7ca5f8f119593023809e6130db75154597c52426 (patch) | |
tree | 00b618852ec93eaba8160832f68f99ffc91382e9 /models/action.go | |
parent | 194a742fb922c20db0a70100e5f2aaadf03c2acf (diff) | |
download | gitea-7ca5f8f119593023809e6130db75154597c52426.tar.gz gitea-7ca5f8f119593023809e6130db75154597c52426.zip |
models/repo: remove redundant info for some repo methods
RepoLink -> Link, RepoRelLink -> RelLink, FullRepoLink -> FullLink
Diffstat (limited to 'models/action.go')
-rw-r--r-- | models/action.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/models/action.go b/models/action.go index efb4eaaf02..d39209c447 100644 --- a/models/action.go +++ b/models/action.go @@ -517,7 +517,7 @@ func CommitRepoAction( Before: oldCommitID, After: newCommitID, CompareUrl: setting.AppUrl + commit.CompareUrl, - Commits: commit.ToApiPayloadCommits(repo.FullRepoLink()), + Commits: commit.ToApiPayloadCommits(repo.FullLink()), Repo: payloadRepo, Pusher: &api.PayloadAuthor{ Name: pusher_name, |