From 5dd73838515b4174f55f5b321dd63b73a7262d18 Mon Sep 17 00:00:00 2001 From: esantangelo <enzo020895@gmail.com> Date: Sun, 29 Nov 2020 21:00:05 -0300 Subject: [PATCH] fix AddProfessorToCourse --- Tsi1.Api/Tsi1.Api/Controllers/CourseController.cs | 5 ++++- Tsi1.Api/Tsi1.BusinessLayer/Interfaces/ICourseService.cs | 2 +- Tsi1.Api/Tsi1.BusinessLayer/Services/CourseService.cs | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Tsi1.Api/Tsi1.Api/Controllers/CourseController.cs b/Tsi1.Api/Tsi1.Api/Controllers/CourseController.cs index 90c4e05..e053ee6 100644 --- a/Tsi1.Api/Tsi1.Api/Controllers/CourseController.cs +++ b/Tsi1.Api/Tsi1.Api/Controllers/CourseController.cs @@ -110,7 +110,10 @@ namespace Tsi1.Api.Controllers [HttpPost("AddProfessorToCourse")] public async Task<IActionResult> AddProfessorToCourse(ProfessorCourseDto professorCourseDto) { - var result = await _courseService.AddProfessorToCourse(professorCourseDto); + var userId = int.Parse(HttpContext.User.Claims.FirstOrDefault(x => x.Type == "Id").Value); + var userType = HttpContext.User.Claims.FirstOrDefault(x => x.Type == ClaimTypes.Role).Value; + + var result = await _courseService.AddProfessorToCourse(professorCourseDto, userId, userType); if (result.HasError) { diff --git a/Tsi1.Api/Tsi1.BusinessLayer/Interfaces/ICourseService.cs b/Tsi1.Api/Tsi1.BusinessLayer/Interfaces/ICourseService.cs index 9bd530c..846f11c 100644 --- a/Tsi1.Api/Tsi1.BusinessLayer/Interfaces/ICourseService.cs +++ b/Tsi1.Api/Tsi1.BusinessLayer/Interfaces/ICourseService.cs @@ -14,7 +14,7 @@ namespace Tsi1.BusinessLayer.Interfaces Task<ServiceResult<bool>> Matriculate(int userId, int courseId); - Task<ServiceResult<bool>> AddProfessorToCourse(ProfessorCourseDto professorCourseDto); + Task<ServiceResult<bool>> AddProfessorToCourse(ProfessorCourseDto professorCourseDto, int userId, string userType); Task<ServiceResult<List<CoursePreviewDto>>> GetAll(int tenantId, bool isTemplate = false); diff --git a/Tsi1.Api/Tsi1.BusinessLayer/Services/CourseService.cs b/Tsi1.Api/Tsi1.BusinessLayer/Services/CourseService.cs index b06b5c4..f7f639b 100644 --- a/Tsi1.Api/Tsi1.BusinessLayer/Services/CourseService.cs +++ b/Tsi1.Api/Tsi1.BusinessLayer/Services/CourseService.cs @@ -160,7 +160,7 @@ namespace Tsi1.BusinessLayer.Services if (user == null || user.Professor == null) { result.HasError = true; - result.Message = string.Format(ErrorMessages.UserDoesNotExist, user.Username); + result.Message = string.Format(ErrorMessages.UserDoesNotExist, user.Id); return result; } -- GitLab