@@ -2,13 +2,14 @@ import { Route, IndexRoute } from 'react-router';
22import { Meteor } from 'meteor/meteor' ;
33import App from './app/App' ;
44import Main from './app/Main' ;
5- import Index from './app/Index ' ;
5+ import Index from './app/index ' ;
66import NotFound from '../imports/ui/components/notfound/NotFoundPage' ;
77import SignIn from '../imports/ui/components/auth/SignIn' ;
88import SignUp from '../imports/ui/components/auth/SignUp' ;
99import SignOut from '../imports/ui/components/auth/SignOut' ;
1010import Docs from '../imports/ui/components/docs/Docs' ;
1111import logger from 'cdm-logger' ;
12+ import Profile from 'Main/Profile' ;
1213
1314import { getRoutes } from '../../AdminApp/client/routes' ;
1415
@@ -28,7 +29,7 @@ class routes {
2829 * Only need to inject this on the CLIENT side for lazy loading
2930 */
3031 injectStore ( store ) {
31- logger . debug ( 'Injecting Store' , store ) ;
32+ logger . debug ( 'Injecting Store and available states are ' , store . getState ( ) ) ;
3233 this . store = store ;
3334 }
3435
@@ -52,6 +53,7 @@ class routes {
5253 < Route path = "/signin" component = { SignIn } />
5354 < Route path = "/signup" component = { SignUp } />
5455 < Route path = "/signout" component = { SignOut } />
56+ < Route path = "/profile" component = { Profile } />
5557 < Route path = "/docs" component = { Docs } />
5658 </ Route >
5759 { /* -- Protected Site here --*/ }
0 commit comments