GetEmailVerificationURL to get url for invite email verification
(token, hostname, redirectURI string)
| 86 | |
| 87 | // GetEmailVerificationURL to get url for invite email verification |
| 88 | func GetEmailVerificationURL(token, hostname, redirectURI string) string { |
| 89 | return hostname + "/verify_email?token=" + token + "&redirect_uri=" + redirectURI |
| 90 | } |
| 91 | |
| 92 | // FindDeletedValues find deleted values between original and updated one |
| 93 | func FindDeletedValues(original, updated []string) []string { |
no outgoing calls
no test coverage detected