FIX: redirect /my/*path to /login-preferences on client side

This commit is contained in:
Arpit Jalan 2020-04-08 07:10:58 +05:30
parent 0991c4ae7e
commit 236833ed5d

View File

@ -249,7 +249,7 @@ const DiscourseURL = EmberObject.extend({
userPath(currentUser.get("username_lower") + "/")
);
} else {
return redirectTo("/404");
return redirectTo("/login-preferences");
}
}