Browse Source

add throttle to resend api

mahdi
mahdihty 4 years ago
parent
commit
5ebee20872
  1. 2
      routes/api.php

2
routes/api.php

@ -32,7 +32,7 @@ $router->group(['prefix' => 'auth'], function () use ($router) {
$router->post('verification', 'AuthController@verification')->name('verification');
$router->post('resend', 'AuthController@resendLink');
$router->post('resend', 'AuthController@resendLink')->middleware('throttle:1');
$router->get('google/redirect', 'AuthController@redirectToGoogle')->name('google.redirect');
$router->get('google/callback', 'AuthController@handleGoogleCallback')->name('google.callback');

Loading…
Cancel
Save