Fix for #1622 and a special debug view.

This commit is contained in:
James Cole
2018-11-23 08:31:00 +01:00
parent baac2ad921
commit 886d05d436
4 changed files with 43 additions and 10 deletions

View File

@@ -879,6 +879,7 @@ Route::group(
);
Route::get('show/{tj}', ['uses' => 'TransactionController@show', 'as' => 'show']);
Route::get('debug/{tj}', ['uses' => 'Transaction\SingleController@debugShow', 'as' => 'debug']);
Route::post('reorder', ['uses' => 'TransactionController@reorder', 'as' => 'reorder']);
Route::post('reconcile', ['uses' => 'TransactionController@reconcile', 'as' => 'reconcile']);
}