Update boxes.

This commit is contained in:
James Cole
2022-06-06 17:39:50 +02:00
parent c916fbbee9
commit f13dd18b6f
33 changed files with 479 additions and 87 deletions

View File

@@ -33,6 +33,17 @@ Route::group(
}
);
/**
* V2 API route for net worth endpoint(s);
*/
Route::group(
['namespace' => 'FireflyIII\Api\V2\Controllers', 'prefix' => 'v2/net-worth',
'as' => 'api.v2.net-worth.',],
static function () {
Route::get('', ['uses' => 'NetWorthController@get', 'as' => 'index']);
}
);
/**
* V2 API route for bills.
*/
@@ -45,6 +56,8 @@ Route::group(
}
);
/**
* V2 API route for budgets.
*/