mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Speed up some tests.
This commit is contained in:
@@ -287,7 +287,7 @@ Route::group(
|
||||
Route::group(
|
||||
['middleware' => 'user-full-auth', 'namespace' => 'Chart', 'prefix' => 'chart/category', 'as' => 'chart.category.'], function () {
|
||||
|
||||
Route::get('frontpage', ['uses' => 'CategoryController@frontpage']);
|
||||
Route::get('frontpage', ['uses' => 'CategoryController@frontpage', 'as' => 'frontpage']);
|
||||
Route::get('period/{category}', ['uses' => 'CategoryController@currentPeriod', 'as' => 'current']);
|
||||
Route::get('period/{category}/{date}', ['uses' => 'CategoryController@specificPeriod', 'as' => 'specific']);
|
||||
Route::get('all/{category}', ['uses' => 'CategoryController@all', 'as' => 'all']);
|
||||
|
Reference in New Issue
Block a user