Skip to content

Commit

Permalink
separating forgot-password and confirm routes (#964)
Browse files Browse the repository at this point in the history
  • Loading branch information
Angamanga authored Dec 4, 2017
1 parent 8dc225a commit 9cb3e31
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/common/common-routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,16 @@ module.exports = ['$stateProvider', '$urlMatcherFactoryProvider', function ($sta
)
.state(
{
name: 'forgotpassword.confirm',
name: 'confirm',
url: '/forgotpassword/confirm',
controller: require('./auth/password-reset-confirm.controller.js'),
template: ''
}
)
.state(
{
name: 'forgotpassword.confirm.token',
url: '/forgotpassword/confirm/:token',
name: 'confirm.token',
url: '/:token',
controller: require('./auth/password-reset-confirm.controller.js'),
template: ''
}
Expand Down

0 comments on commit 9cb3e31

Please sign in to comment.