summaryrefslogtreecommitdiffstats
path: root/webapp/root.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/root.jsx')
-rw-r--r--webapp/root.jsx20
1 files changed, 1 insertions, 19 deletions
diff --git a/webapp/root.jsx b/webapp/root.jsx
index 9c2708506..112f0880e 100644
--- a/webapp/root.jsx
+++ b/webapp/root.jsx
@@ -149,23 +149,6 @@ function preLoggedIn(nextState, replace, callback) {
});
}
-function onRootEnter(nextState, replace, callback) {
- if (nextState.location.pathname === '/') {
- Client.getMeLoggedIn((data) => {
- if (!data || data.logged_in === 'false') {
- replace({pathname: '/signup_team'});
- callback();
- } else {
- replace({pathname: '/' + data.team_name + '/channels/town-square'});
- callback();
- }
- });
- return;
- }
-
- callback();
-}
-
function onPermalinkEnter(nextState) {
const postId = nextState.params.postid;
@@ -216,7 +199,6 @@ function renderRootComponent() {
<Route
path='/'
component={Root}
- onEnter={onRootEnter}
>
<Route
component={LoggedIn}
@@ -314,7 +296,7 @@ function renderRootComponent() {
component={TeamURLPage}
/>
<Route
- path='invites'
+ path='send_invites'
component={SendInivtesPage}
/>
<Route