mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 23:45:10 +00:00
First attempt at an import/migration procedure.
This commit is contained in:
@@ -17,4 +17,8 @@ Route::post('/remindme',['uses' => 'UserController@postRemindme','before' => 'cs
|
||||
// profile (after login / logout)
|
||||
Route::get('/profile',['uses' => 'ProfileController@index','as' => 'profile','before' => 'auth']);
|
||||
Route::get('/profile/change-password',['uses' => 'ProfileController@changePassword','as' => 'change-password','before' => 'auth']);
|
||||
Route::post('/profile/change-password',['uses' => 'ProfileController@postChangePassword','before' => 'csrf|auth']);
|
||||
Route::post('/profile/change-password',['uses' => 'ProfileController@postChangePassword','before' => 'csrf|auth']);
|
||||
|
||||
// migrate controller:
|
||||
Route::get('/migrate',['uses' => 'MigrationController@index','as' => 'migrate','before' => 'auth']);
|
||||
Route::post('/migrate',['uses' => 'MigrationController@postIndex','before' => 'csrf|auth']);
|
Reference in New Issue
Block a user