-
Notifications
You must be signed in to change notification settings - Fork 70
Open
Description
Hello,
I've tried to use out-of-the-box email verfication but had no success.
If I don't do anything, the URL http://localhost:3000/#/verify-email/1234567890 has no effect.
Then I tried to implement myself:
Meteor.Router.add({
'/#/verify-email/:_token': function(token) {
Accounts.verifyEmail(token);
return 'verifyEmail';
}
});which didn't work either.
With
Meteor.Router.add({
'/customVerification/:_token': function(token) {
Accounts.verifyEmail(token);
return 'verifyEmail';
}
})and pointing to http://localhost:3000/customVerification/1234567890 it works.
Could anyone help?
Metadata
Metadata
Assignees
Labels
No labels