FIX: Don't redirect for `users/account-created` path

This commit is contained in:
Robin Ward 2017-05-11 11:04:45 -04:00
parent f4b2677a19
commit 006b35d2f3
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ export default {
}
DiscourseURL.rewrite(/^\/u\/([^\/]+)\/?$/, "/u/$1/summary", {
exceptions: ['/u/account-created']
exceptions: ['/u/account-created', '/users/account-created']
});
}
};