File tree 4 files changed +8
-4
lines changed
src/Http/Controllers/stubs
4 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 1.0.1 - 2023-11-26
4
+
5
+ - Fix forgotPassword route
6
+
3
7
## 1.0.0 - 2023-11-25
4
8
5
9
- Initial release
Original file line number Diff line number Diff line change 2
2
3
3
This package allows you to authenticate users via a Nylo Flutter app.
4
4
5
- Check out the Flutter package here to install the ui on your app: [ laravel_nylo_auth] ( https://pub.dev/packages/laravel_auth_slate ) .
5
+ Check out the Flutter package here to install the UI on your app: [ laravel_nylo_auth] ( https://pub.dev/packages/laravel_auth_slate ) .
6
6
7
7
## Installation
8
8
@@ -12,7 +12,7 @@ You can install the package via composer:
12
12
composer require nylo/laravel-nylo-auth
13
13
```
14
14
15
- You can publish and run the migrations with:
15
+ You can publish with:
16
16
17
17
``` bash
18
18
php artisan vendor:publish --provider=" Nylo\LaravelNyloAuth\LaravelNyloAuthServiceProvider"
Original file line number Diff line number Diff line change 12
12
], function () {
13
13
Route::post ('login ' , [AuthController::class, 'login ' ])->name ('login ' );
14
14
Route::post ('register ' , [AuthController::class, 'register ' ])->name ('register ' );
15
- Route::post ('forget -password ' , [AuthController::class, 'forgetPassword ' ])->name ('forget-password ' );
15
+ Route::post ('forgot -password ' , [AuthController::class, 'forgotPassword ' ])->name ('forget-password ' );
16
16
17
17
Route::group ([
18
18
'middleware ' => 'auth:sanctum ' ,
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ public function register(RegisterRequest $request)
72
72
* @param \Nylo\LaravelNyloAuth\Http\Requests\ForgotPasswordRequest $request
73
73
* @return \Illuminate\Http\JsonResponse
74
74
*/
75
- public function forgetPassword (ForgotPasswordRequest $ request )
75
+ public function forgotPassword (ForgotPasswordRequest $ request )
76
76
{
77
77
$ status = Password::sendResetLink (
78
78
$ request ->only ('email ' )
You can’t perform that action at this time.
0 commit comments