Browse Source

fix news feed repo link

for-closed-social
jiangjianxiao 10 years ago
parent
commit
501f70e248
2 changed files with 7 additions and 1 deletions
  1. +4
    -0
      models/action.go
  2. +3
    -1
      modules/base/template.go

+ 4
- 0
models/action.go View File

@ -63,6 +63,10 @@ func (a Action) GetActEmail() string {
return a.ActEmail
}
func (a Action) GetRepoUserName() string {
return a.RepoUserName
}
func (a Action) GetRepoName() string {
return a.RepoName
}

+ 3
- 1
modules/base/template.go 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() {

Loading…
Cancel
Save