mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-12 01:42:32 +00:00
Add API route to move transactions from one account to another.
This commit is contained in:
@@ -90,6 +90,15 @@ Route::group(
|
||||
}
|
||||
);
|
||||
|
||||
// Bulk update Account routes
|
||||
Route::group(
|
||||
['namespace' => 'FireflyIII\Api\V1\Controllers\Data\Bulk', 'prefix' => 'data/bulk/accounts',
|
||||
'as' => 'api.v1.data.bulk.',],
|
||||
static function () {
|
||||
Route::post('transactions', ['uses' => 'AccountController@moveTransactions', 'as' => 'accounts.move-transactions']);
|
||||
}
|
||||
);
|
||||
|
||||
/**
|
||||
* INSIGHTS ROUTES
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user