Убрано лишнее

This commit is contained in:
Оля Бизюкова 2024-01-19 10:42:02 +05:00
parent c8c0ea37fe
commit 183d07639e

View File

@ -17,7 +17,7 @@ namespace AsbCloudWebApi.Controllers
/// </summary>
[Route("api/well/{idWell}/files")]
[ApiController]
//[Authorize]
[Authorize]
public class FileController : ControllerBase
{
private readonly FileService fileService;
@ -39,7 +39,7 @@ namespace AsbCloudWebApi.Controllers
/// <param name="token"> Токен отмены задачи </param>
/// <returns></returns>
[HttpPost]
//[Permission]
[Permission]
[ProducesResponseType(typeof(int), (int)System.Net.HttpStatusCode.OK)]
public async Task<IActionResult> SaveFilesAsync(int idWell, int idCategory,
[FromForm] IFormFileCollection files, [FromServices] IUserRepository userRepository, CancellationToken token)
@ -60,7 +60,7 @@ namespace AsbCloudWebApi.Controllers
foreach (var file in files)
{
var fileStream = file.OpenReadStream();
await fileService.SaveAsync(idWell, idUser ?? 1, idCategory, file.FileName,
await fileService.SaveAsync(idWell, idUser ?? 0, idCategory, file.FileName,
fileStream, token).ConfigureAwait(false);
}