Added TODO

This commit is contained in:
James Brooks
2014-12-18 22:54:04 +00:00
parent fff35552c6
commit 82b92077cf

View File

@@ -4,6 +4,7 @@ Route::group(['before' => 'auth', 'prefix' => 'dashboard'], function() {
Route::get('/', ['as' => 'dashboard', 'uses' => 'DashboardController@showDashboard']);
Route::post('/', 'DashboardController@createIncidentAction');
// TODO: Switch for Route::controller?
Route::get('components', ['as' => 'dashboard.components', 'uses' => 'DashboardController@showComponents']);
Route::post('components/create', 'DashboardController@createComponentAction');
Route::get('components/{component}/delete', 'DashboardController@deleteComponentAction');