meteor-useraccounts / flow-routing

Useraccounts packages add-on for integration with Flow Router and Blaze Layout.
https://atmospherejs.com/useraccounts/flow-routing
MIT License
72 stars 50 forks source link

resetPwd not abiding by path configuration #29

Open romant opened 8 years ago

romant commented 8 years ago

Whilst using the following

AccountsTemplates.configureRoute('resetPwd', {
  name: 'resetPassword',
  path: '/resetPassword',
  template: 'resetPassword',
  layoutTemplate: 'atFormsLayout',
  layoutRegions: {
    header: "header",
    main: "resetPassword",
    footer: "footer"
  }
});

All emails sent to the user - still have password-reset as the path, instead of the path: 'resetPassword'.

Equivalent definitions for forgotPwd, signIn, signUp all work fine. Just the resetPwd misbehaving (or is this a config issue?)

Thank you.