mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-12 09:52:20 +00:00
Basic export function for #2667
This commit is contained in:
@@ -488,7 +488,17 @@ Route::group(
|
||||
|
||||
}
|
||||
);
|
||||
/**
|
||||
* Export controller
|
||||
*/
|
||||
Route::group(
|
||||
['middleware' => 'user-full-auth', 'namespace' => 'FireflyIII\Http\Controllers', 'prefix' => 'export', 'as' => 'export.'], static function () {
|
||||
|
||||
// index
|
||||
Route::get('', ['uses' => 'Export\IndexController@index', 'as' => 'index']);
|
||||
Route::get('export', ['uses' => 'Export\IndexController@export', 'as' => 'export']);
|
||||
|
||||
});
|
||||
/**
|
||||
* Import Controller
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user