Update refresh token

This commit is contained in:
ahmadafriadi 2025-06-27 22:39:09 +07:00
parent 6a688931fe
commit 6c5ccc94cf

View File

@ -127,5 +127,6 @@ func (h *AuthHandler) RefreshToken(c *fiber.Ctx) error {
return c.JSON(fiber.Map{ return c.JSON(fiber.Map{
"token": newAccessToken, "token": newAccessToken,
"refresh_token": newAccessToken,
}) })
} }