Fix HTTP method of user signing
This commit is contained in:
parent
4e9c0b9d45
commit
061f7ff6f8
|
|
@ -45,7 +45,7 @@ Route::group(['prefix' => 'auth'], function ()
|
|||
Route::group(['middleware' => ['web', 'auth'], 'prefix' => 'user'], function ()
|
||||
{
|
||||
Route::any ('', 'UserController@index');
|
||||
Route::any ('/sign', 'UserController@sign');
|
||||
Route::post('/sign', 'UserController@sign');
|
||||
|
||||
// Profile
|
||||
Route::get ('/profile', 'UserController@profile');
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user