We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cec8514 commit b8a4f53Copy full SHA for b8a4f53
1 file changed
services/accountConfirmation.service.js
@@ -87,7 +87,7 @@ function generateToken(accountConfirmationId, accountId = null) {
87
* @returns {string} the string, of form: [http|https]://{domain}/{model}/create?token={token}
88
*/
89
function generateCreateAccountTokenLink(httpOrHttps, domain, type, token) {
90
- const link = `${httpOrHttps}://${domain}/${type}/create?token=${token}`;
+ const link = `${httpOrHttps}://${domain}/account/create?token=${token}&accountType=${type}`;
91
return link;
92
}
93
0 commit comments