2015-06-17 21:04:28 -07:00
|
|
|
/*
|
|
|
|
* show: /jobs
|
|
|
|
* showOne: /jobs/:id
|
|
|
|
* edit /jobs/:id
|
|
|
|
* delete /jobs/:id
|
|
|
|
* createOne /jobs/new
|
|
|
|
*/
|
|
|
|
|
|
|
|
export default {
|
|
|
|
path: '/jobs/(:jobId)',
|
|
|
|
|
|
|
|
getComponents(cb) {
|
|
|
|
require.ensure([], require => {
|
|
|
|
cb(null, [
|
2015-06-29 09:50:25 -07:00
|
|
|
require('./components/Jobs.jsx')
|
2015-06-17 21:04:28 -07:00
|
|
|
]);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|