aboutsummaryrefslogtreecommitdiffstats
path: root/modules/templates/util_misc.go
diff options
context:
space:
mode:
Diffstat (limited to 'modules/templates/util_misc.go')
-rw-r--r--modules/templates/util_misc.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/templates/util_misc.go b/modules/templates/util_misc.go
index 7700a13932..fe02e4b0c3 100644
--- a/modules/templates/util_misc.go
+++ b/modules/templates/util_misc.go
@@ -58,11 +58,11 @@ func IsMultilineCommitMessage(msg string) bool {
// Actioner describes an action
type Actioner interface {
GetOpType() activities_model.ActionType
- GetActUserName() string
- GetRepoUserName() string
- GetRepoName() string
- GetRepoPath() string
- GetRepoLink() string
+ GetActUserName(ctx context.Context) string
+ GetRepoUserName(ctx context.Context) string
+ GetRepoName(ctx context.Context) string
+ GetRepoPath(ctx context.Context) string
+ GetRepoLink(ctx context.Context) string
GetBranch() string
GetContent() string
GetCreate() time.Time