mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	Implemented #595 for transactions.
This commit is contained in:
		| @@ -662,11 +662,11 @@ Route::group( | ||||
|  */ | ||||
| Route::group( | ||||
|     ['middleware' => 'user-full-auth', 'prefix' => 'transactions', 'as' => 'transactions.'], function () { | ||||
|     Route::get('{what}', ['uses' => 'TransactionController@index', 'as' => 'index'])->where(['what' => 'withdrawal|deposit|transfers|transfer']); | ||||
|     Route::get('{what}/all', ['uses' => 'TransactionController@indexAll', 'as' => 'index.all'])->where(['what' => 'withdrawal|deposit|transfers|transfer']); | ||||
|     Route::get('{what}/{date}', ['uses' => 'TransactionController@indexByDate', 'as' => 'index.date'])->where( | ||||
|         ['what' => 'withdrawal|deposit|transfers|transfer'] | ||||
|     ); | ||||
|     Route::get('{what}/{moment?}', ['uses' => 'TransactionController@index', 'as' => 'index'])->where(['what' => 'withdrawal|deposit|transfers|transfer']); | ||||
| //    Route::get('{what}/all', ['uses' => 'TransactionController@indexAll', 'as' => 'index.all'])->where(['what' => 'withdrawal|deposit|transfers|transfer']); | ||||
| //    Route::get('{what}/{date}', ['uses' => 'TransactionController@indexByDate', 'as' => 'index.date'])->where( | ||||
| //        ['what' => 'withdrawal|deposit|transfers|transfer'] | ||||
| //    ); | ||||
|     Route::get('show/{tj}', ['uses' => 'TransactionController@show', 'as' => 'show']); | ||||
|     Route::post('reorder', ['uses' => 'TransactionController@reorder', 'as' => 'reorder']); | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user