commit format improved
This commit is contained in:
parent
f824d6a4b1
commit
1fb457ac1f
2 changed files with 12 additions and 4 deletions
|
@ -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,
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue