aboutsummaryrefslogtreecommitdiff
path: root/models/action.go
diff options
context:
space:
mode:
authorLunny Xiao <xiaolunwen@gmail.com>2014-03-23 19:24:18 +0800
committerLunny Xiao <xiaolunwen@gmail.com>2014-03-23 19:24:18 +0800
commit2dd5259f8e499b0749ecb21faa5e6ad1acb39ff7 (patch)
treee607b7a37be6e18f49561e77720dcf9fcd29ea2c /models/action.go
parente9a3432d984d19b675ee4a1ff82b2a148f970645 (diff)
parentc386bb4bd314843a532012877e148ae70ee44672 (diff)
Merge branch 'master' of github.com:gogits/gogs
Diffstat (limited to 'models/action.go')
-rw-r--r--models/action.go12
1 files changed, 6 insertions, 6 deletions
diff --git a/models/action.go b/models/action.go
index ca2ff3cb..11749293 100644
--- a/models/action.go
+++ b/models/action.go
@@ -8,6 +8,7 @@ import (
"encoding/json"
"time"
+ "github.com/gogits/gogs/modules/base"
"github.com/gogits/gogs/modules/log"
)
@@ -47,18 +48,17 @@ func (a Action) GetRepoName() string {
return a.RepoName
}
-func (a Action) GetContent() string {
- return a.Content
+func (a Action) GetBranch() string {
+ return a.RefName
}
-type PushCommits struct {
- Len int
- Commits [][]string
+func (a Action) GetContent() string {
+ return a.Content
}
// CommitRepoAction records action for commit repository.
func CommitRepoAction(userId int64, userName string,
- repoId int64, repoName string, refName string, commits *PushCommits) error {
+ repoId int64, repoName string, refName string, commits *base.PushCommits) error {
bs, err := json.Marshal(commits)
if err != nil {
return err