public IActionResult Authenticate(GoogleUserAuthenticationRequest request)
        {
            string jwtToken;

            _authenticationService.AuthenticateGoogleUser(request.IdToken, out jwtToken);

            return(Ok(new { JwtToken = jwtToken }));
        }