mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
New code for transaction processing and frontend
This commit is contained in:
@@ -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:
|
||||
*/
|
||||
|
Reference in New Issue
Block a user