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