Preference can be turned on and off (is always off now)

This commit is contained in:
James Cole
2022-06-07 19:24:08 +02:00
parent 46e97f95f9
commit c3bd46d7c0
8 changed files with 473 additions and 4 deletions

View File

@@ -44,6 +44,17 @@ Route::group(
}
);
/**
* V2 API routes for charts
*/
Route::group(
['namespace' => 'FireflyIII\Api\V2\Controllers\Chart', 'prefix' => 'v2/chart',
'as' => 'api.v1.chart.',],
static function () {
Route::get('account/dashboard', ['uses' => 'AccountController@dashboard', 'as' => 'dashboard']);
}
);
/**
* V2 API route for bills.
*/