invite: auto-append /invite if missing to url_base

This commit is contained in:
Harvey Tindall 2021-08-26 18:53:22 +01:00
parent 412fe31da6
commit e67b2e91fb
Signed by: hrfee
GPG Key ID: BBC65952848FB1A2
1 changed files with 3 additions and 0 deletions

View File

@ -306,6 +306,9 @@ func (emailer *Emailer) confirmationValues(code, username, key string, app *appC
} else {
message := app.config.Section("messages").Key("message").String()
inviteLink := app.config.Section("invite_emails").Key("url_base").String()
if !strings.HasSuffix(inviteLink, "/invite") {
inviteLink += "/invite"
}
inviteLink = fmt.Sprintf("%s/%s?key=%s", inviteLink, code, key)
template["helloUser"] = emailer.lang.Strings.template("helloUser", tmpl{"username": username})
template["confirmationURL"] = inviteLink