aboutsummaryrefslogtreecommitdiffhomepage
path: root/routes/api.php
diff options
context:
space:
mode:
Diffstat (limited to 'routes/api.php')
-rw-r--r--[-rwxr-xr-x]routes/api.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/routes/api.php b/routes/api.php
index 9471c3a..c641ca5 100755..100644
--- a/routes/api.php
+++ b/routes/api.php
@@ -11,8 +11,8 @@ use Illuminate\Http\Request;
| routes are loaded by the RouteServiceProvider within a group which
| is assigned the "api" middleware group. Enjoy building your API!
|
- */
+*/
-Route::middleware('auth:api', 'throttle:30')->group(function() {
- Route::get('/user', ['as' => 'GetUserData', 'uses' => 'ApiController@getUserData']);
+Route::middleware('auth:api')->get('/user', function (Request $request) {
+ return $request->user();
});