aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/template/template.go7
1 files changed, 0 insertions, 7 deletions
diff --git a/modules/template/template.go b/modules/template/template.go
index c05335f2..433c4127 100644
--- a/modules/template/template.go
+++ b/modules/template/template.go
@@ -73,13 +73,6 @@ func NewFuncMap() []template.FuncMap {
return t.Format("Jan 02, 2006")
},
"List": List,
- "Mail2Domain": func(mail string) string {
- if !strings.Contains(mail, "@") {
- return "try.gogs.io"
- }
-
- return strings.SplitN(mail, "@", 2)[1]
- },
"SubStr": func(str string, start, length int) string {
if len(str) == 0 {
return ""