From 501f70e248660d51e5eb8f2343b1a19db8679c21 Mon Sep 17 00:00:00 2001 From: jiangjianxiao Date: Fri, 9 May 2014 14:42:50 +0800 Subject: fix news feed repo link --- modules/base/template.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'modules/base') diff --git a/modules/base/template.go b/modules/base/template.go index 135be107f2..b9449e30af 100644 --- a/modules/base/template.go +++ b/modules/base/template.go @@ -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() { -- cgit v1.2.3