From 1d50cdca6bf1c8ef2ad408b5a2d77841a2816a0e Mon Sep 17 00:00:00 2001
From: Lucca Santangelo <luccasant95@gmail.com>
Date: Tue, 8 Dec 2020 21:26:57 -0300
Subject: [PATCH] mensaje de error

---
 Tsi1.Api/Tsi1.Api/Controllers/UserController.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Tsi1.Api/Tsi1.Api/Controllers/UserController.cs b/Tsi1.Api/Tsi1.Api/Controllers/UserController.cs
index f47f131..fe3afbb 100644
--- a/Tsi1.Api/Tsi1.Api/Controllers/UserController.cs
+++ b/Tsi1.Api/Tsi1.Api/Controllers/UserController.cs
@@ -411,7 +411,7 @@ namespace Tsi1.Api.Controllers
             var result = await _emailService.SendVerificationCode(userResult.Data.Email, code);
             if (result.HasError)
             {
-                return BadRequest("Ha ocurrido un error");
+                return BadRequest(result.Message);
             }
 
             return Ok();
-- 
GitLab