summaryrefslogtreecommitdiffstats
path: root/models/update.go
diff options
context:
space:
mode:
authorChristopher Brickley <brickley@gmail.com>2014-08-26 08:20:18 -0400
committerChristopher Brickley <brickley@gmail.com>2014-09-01 14:56:19 -0400
commit00a864e693434bce687f3f5145d8369583197b78 (patch)
treedf25bf583ec2a0070c159bcb3d0d161d931f6801 /models/update.go
parentd55c5b9e289c0c97aa51ffe5cb5b77f703cc2a47 (diff)
downloadgitea-00a864e693434bce687f3f5145d8369583197b78.tar.gz
gitea-00a864e693434bce687f3f5145d8369583197b78.zip
add commit compare functionality
Diffstat (limited to 'models/update.go')
-rw-r--r--models/update.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/models/update.go b/models/update.go
index 68a92ada1d..ec6a979016 100644
--- a/models/update.go
+++ b/models/update.go
@@ -101,7 +101,7 @@ func Update(refName, oldCommitId, newCommitId, userName, repoUserName, repoName
commit := &base.PushCommits{}
if err = CommitRepoAction(userId, ru.Id, userName, actEmail,
- repos.Id, repoUserName, repoName, refName, commit); err != nil {
+ repos.Id, repoUserName, repoName, refName, commit, oldCommitId, newCommitId); err != nil {
log.GitLogger.Fatal(4, "runUpdate.models.CommitRepoAction: %s/%s:%v", repoUserName, repoName, err)
}
return err
@@ -152,7 +152,7 @@ func Update(refName, oldCommitId, newCommitId, userName, repoUserName, repoName
//commits = append(commits, []string{lastCommit.Id().String(), lastCommit.Message()})
if err = CommitRepoAction(userId, ru.Id, userName, actEmail,
- repos.Id, repoUserName, repoName, refName, &base.PushCommits{l.Len(), commits}); err != nil {
+ repos.Id, repoUserName, repoName, refName, &base.PushCommits{l.Len(), commits}, oldCommitId, newCommitId); err != nil {
return fmt.Errorf("runUpdate.models.CommitRepoAction: %s/%s:%v", repoUserName, repoName, err)
}
return nil