fix news feed repo link

This commit is contained in:
jiangjianxiao 2014-05-09 14:42:50 +08:00
parent 09dba7d63e
commit 501f70e248
2 changed files with 7 additions and 1 deletions

View file

@ -100,6 +100,7 @@ type Actioner interface {
GetOpType() int
GetActUserName() string
GetActEmail() string
GetRepoUserName() string
GetRepoName() string
GetBranch() string
GetContent() string
@ -153,8 +154,9 @@ type PushCommits struct {
func ActionDesc(act Actioner) string {
actUserName := act.GetActUserName()
email := act.GetActEmail()
repoUserName := act.GetRepoUserName()
repoName := act.GetRepoName()
repoLink := actUserName + "/" + repoName
repoLink := repoUserName + "/" + repoName
branch := act.GetBranch()
content := act.GetContent()
switch act.GetOpType() {