Blame view
both/routes/authenticated.js
359 Bytes
6dd0ad2bb
|
1 |
const authenticatedRoutes = FlowRouter.group({ |
d4ce6ca83
|
2 |
name: 'authenticated' |
77001041a
|
3 |
}); |
334a76815
|
4 |
authenticatedRoutes.route( '/', { |
77001041a
|
5 |
name: 'index', |
77001041a
|
6 7 8 9 |
action() { BlazeLayout.render( 'default', { yield: 'index' } ); } }); |
6dd0ad2bb
|
10 11 12 13 |
authenticatedRoutes.route( '/dashboard', { name: 'dashboard', action() { |
c39994410
|
14 |
BlazeLayout.render( 'default', { yield: 'dashboard' }, hello ); |
6dd0ad2bb
|
15 16 |
} }); |