commit format improved

This commit is contained in:
Lunny Xiao 2014-03-16 23:02:59 +08:00
parent f824d6a4b1
commit 1fb457ac1f
2 changed files with 12 additions and 4 deletions

View file

@ -5,6 +5,7 @@
package models
import (
"encoding/json"
"time"
)
@ -45,13 +46,17 @@ func (a Action) GetRepoName() string {
// CommitRepoAction records action for commit repository.
func CommitRepoAction(userId int64, userName string,
repoId int64, repoName string, msg string) error {
_, err := orm.InsertOne(&Action{
repoId int64, repoName string, commits [][]string) error {
bs, err := json.Marshal(commits)
if err != nil {
return err
}
_, err = orm.InsertOne(&Action{
UserId: userId,
ActUserId: userId,
ActUserName: userName,
OpType: OP_COMMIT_REPO,
Content: msg,
Content: string(bs),
RepoId: repoId,
RepoName: repoName,
})