Support for both /users/ and /u/ paths

This commit is contained in:
Robin Ward
2017-03-27 15:34:54 -04:00
parent 99abbc2e2d
commit 6b976433c9
10 changed files with 119 additions and 34 deletions

View File

@@ -49,6 +49,6 @@ test("Restricted Routes", () => {
visit("/users/eviltrout/preferences");
andThen(() => {
equal(currentURL(), '/users/eviltrout/activity', "it redirects from preferences");
equal(currentURL(), '/u/eviltrout/activity', "it redirects from preferences");
});
});