support .well-known/change-password

This commit is contained in:
Pig Fang 2020-09-07 19:19:16 +08:00
parent f9d3a500db
commit d6ac5eb5d1
No known key found for this signature in database
GPG Key ID: A8198F548DADA9E2

View File

@ -205,3 +205,7 @@ Route::prefix('setup')->group(function () {
Route::post('finish', 'SetupController@finish');
});
});
Route::prefix('.well-known')->group(function () {
Route::redirect('change-password', '/user/profile');
});