New code for transaction processing and frontend

This commit is contained in:
James Cole
2023-08-22 08:25:06 +02:00
parent f67ff98d78
commit 2404f5299c
13 changed files with 380 additions and 51 deletions

View File

@@ -153,6 +153,20 @@ Route::group(
}
);
/**
* V2 API route for transactions
*/
Route::group(
[
'namespace' => 'FireflyIII\Api\V2\Controllers\Model\Transaction',
'prefix' => 'v2/transactions',
'as' => 'api.v2.transactions.',
],
static function () {
Route::post('', ['uses' => 'StoreController@post', 'as' => 'store']);
}
);
/**
* V2 API route for budgets and budget limits:
*/