Refactor dispatcher dashboard projects route
This commit is contained in:
parent
bd50ecbad8
commit
67b575d053
2 changed files with 5 additions and 0 deletions
|
@ -216,6 +216,8 @@ import Activities from './activities';
|
|||
break;
|
||||
case 'dashboard:projects:index':
|
||||
case 'dashboard:projects:starred':
|
||||
import('./pages/dashboard/projects').then(callDefault).catch(fail);
|
||||
break;
|
||||
case 'explore:projects:index':
|
||||
case 'explore:projects:trending':
|
||||
case 'explore:projects:starred':
|
||||
|
|
3
app/assets/javascripts/pages/dashboard/projects/index.js
Normal file
3
app/assets/javascripts/pages/dashboard/projects/index.js
Normal file
|
@ -0,0 +1,3 @@
|
|||
import ProjectsList from '~/projects_list';
|
||||
|
||||
export default () => new ProjectsList();
|
Loading…
Reference in a new issue