removing unneeded endpoints

This commit is contained in:
2024-03-24 20:08:07 -03:00
parent e547ae41d4
commit 274fe5252a
6 changed files with 2 additions and 58 deletions

View File

@@ -15,18 +15,6 @@ namespace TCC.Controllers
this.ImageService = imageService;
}
[HttpGet("load-small-image")]
public async Task<IActionResult> GetSimpleImage()
{
return File(ImageService.GetSimpleImage(), "image/png");
}
[HttpGet("load-big-image")]
public async Task<IActionResult> GetBigImage()
{
return File(ImageService.GetBigImage(), "image/png");
}
[HttpPost("save-big-image")]
public async Task<IActionResult> SaveBigImage()
{