(subject, body, link string)
| 185 | } |
| 186 | |
| 187 | func composeTplData(subject, body, link string) map[string]any { |
| 188 | data := make(map[string]any, 10) |
| 189 | data["Subject"] = subject |
| 190 | data["Body"] = body |
| 191 | data["Link"] = link |
| 192 | return data |
| 193 | } |
| 194 | |
| 195 | func composeIssueMessage(issue Issue, repo Repository, doer User, tplName string, tos []string, info string) *Message { |
| 196 | subject := issue.MailSubject() |
no outgoing calls
no test coverage detected