From 01b1141125e57e972b9283519c4858c301b68a8f Mon Sep 17 00:00:00 2001 From: xboard Date: Wed, 15 Jan 2025 20:22:44 +0800 Subject: [PATCH] fix: correct know file issues --- app/Services/AuthService.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Services/AuthService.php b/app/Services/AuthService.php index 547d250..9b73072 100644 --- a/app/Services/AuthService.php +++ b/app/Services/AuthService.php @@ -29,6 +29,7 @@ class AuthService $formattedToken = 'Bearer ' . ($tokenParts[1] ?? $tokenParts[0]); return [ + 'token' => $this->user->token, 'auth_data' => $formattedToken, 'is_admin' => $this->user->is_admin, ];