Added sagas + pages for password reset. WIP BOD-165
This commit is contained in:
@@ -15,6 +15,9 @@ import PrivateRoute from "../utils/private-route";
|
||||
import "./App.styles.scss";
|
||||
|
||||
const LandingPage = lazy(() => import("../pages/landing/landing.page"));
|
||||
const ResetPassword = lazy(() =>
|
||||
import("../pages/reset-password/reset-password.component")
|
||||
);
|
||||
const ManagePage = lazy(() => import("../pages/manage/manage.page.container"));
|
||||
const SignInPage = lazy(() => import("../pages/sign-in/sign-in.page"));
|
||||
const Unauthorized = lazy(() =>
|
||||
@@ -51,6 +54,7 @@ export function App({ checkUserSession, currentUser }) {
|
||||
<Route exact path='/' component={LandingPage} />
|
||||
<Route exact path='/unauthorized' component={Unauthorized} />
|
||||
<Route exact path='/signin' component={SignInPage} />
|
||||
<Route exact path='/resetpassword' component={ResetPassword} />
|
||||
<Route exact path='/csi/:surveyId' component={CsiPage} />
|
||||
<PrivateRoute
|
||||
isAuthorized={currentUser.authorized}
|
||||
|
||||
Reference in New Issue
Block a user