This commit is contained in:
2026-03-07 21:01:40 -06:00
parent 0a884ab950
commit 1f6ed9f257

View File

@@ -61,6 +61,11 @@ class JwtService
return $user->user_jwt;
}
public function forceRefresh(User $user): string
{
return $this->issue($user);
}
public function decode(string $token): object
{
$secret = config('jwt.secret');