mirror of
https://github.com/go-gitea/gitea
synced 2024-11-06 14:19:03 +01:00
Fix missing link on outgoing new release notifications (#29079)
Outgoing new release e-mail notifications were missing links to the actual release. An example from Codeberg.org e-mail: <a href=3D"">View it on Codeberg.org</a>.<br/> This PR adds `"Link"` context property pointing to the release on the web interface. The change was tested using `[mailer] PROTOCOL=dummy`. Signed-off-by: Wiktor Kwapisiewicz <wiktor@metacode.biz>
This commit is contained in:
parent
f290c24d28
commit
37191dcfbd
1 changed files with 1 additions and 0 deletions
|
@ -74,6 +74,7 @@ func mailNewRelease(ctx context.Context, lang string, tos []string, rel *repo_mo
|
||||||
"Release": rel,
|
"Release": rel,
|
||||||
"Subject": subject,
|
"Subject": subject,
|
||||||
"Language": locale.Language(),
|
"Language": locale.Language(),
|
||||||
|
"Link": rel.HTMLURL(),
|
||||||
}
|
}
|
||||||
|
|
||||||
var mailBody bytes.Buffer
|
var mailBody bytes.Buffer
|
||||||
|
|
Loading…
Reference in a new issue