Фикс swagger

This commit is contained in:
2026-04-28 16:30:28 +03:00
parent ee627e4878
commit e61a3be71d
4 changed files with 10 additions and 10 deletions
@@ -61,4 +61,5 @@ public class LecturesController : ControllerBase
[HttpGet("{id:int}/reviews")]
public async Task<ActionResult> Reviews(int id, [FromQuery] PaginationRequest pagination) =>
Ok(await _reviews.GetByLectureAsync(id, pagination));
}
@@ -28,4 +28,5 @@ public class SyncController : ControllerBase
[HttpPost("employees")]
public async Task<ActionResult> SearchEmployees([FromQuery] string fullname) =>
Ok(await _sync.SearchEmployeesAsync(fullname));
}