mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Fix #2694
This commit is contained in:
@@ -108,9 +108,19 @@ Route::group(
|
||||
);
|
||||
|
||||
|
||||
//// show inactive
|
||||
//
|
||||
|
||||
/**
|
||||
* Account Controller
|
||||
*/
|
||||
Route::group(
|
||||
['middleware' => 'user-full-auth', 'namespace' => 'FireflyIII\Http\Controllers', 'prefix' => 'inactive-accounts', 'as' => 'accounts.'], static function () {
|
||||
Route::get('{objectType}', ['uses' => 'Account\IndexController@inactive', 'as' => 'inactive.index'])->where(
|
||||
'objectType', 'revenue|asset|expense|liabilities'
|
||||
);
|
||||
}
|
||||
);
|
||||
Route::group(
|
||||
['middleware' => 'user-full-auth', 'namespace' => 'FireflyIII\Http\Controllers', 'prefix' => 'accounts', 'as' => 'accounts.'], static function () {
|
||||
|
||||
|
Reference in New Issue
Block a user