From 2cdb22043a85ff4825d102430223f45bd540f40d Mon Sep 17 00:00:00 2001 From: Alex P Date: Tue, 7 Nov 2017 22:33:18 -0800 Subject: [PATCH] Redirect lost souls to purgatory not limbo --- ui/src/CheckSources.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ui/src/CheckSources.js b/ui/src/CheckSources.js index d17a6f71d1..d8cdd0fbb6 100644 --- a/ui/src/CheckSources.js +++ b/ui/src/CheckSources.js @@ -106,8 +106,8 @@ const CheckSources = React.createClass({ const restString = rest === null ? DEFAULT_HOME_PAGE : rest[1] if (isUsingAuth && me.role === MEMBER_ROLE) { - // if you're a member, go to limbo. - return router.push('/limbo') + // if you're a member, go to purgatory. + return router.push('/purgatory') } if (isUsingAuth && me.role === VIEWER_ROLE) { @@ -116,8 +116,8 @@ const CheckSources = React.createClass({ } else if (sources[0]) { return router.push(`/sources/${sources[0].id}/${restString}`) } - // if you're a viewer and there are no sources, go to limbo. - return router.push('/limbo') + // if you're a viewer and there are no sources, go to purgatory. + return router.push('/purgatory') } // if you're an editor or not using auth, try for sources or otherwise