diff options
-rw-r--r-- | backend/api/api/Controllers/FileController.cs (renamed from backend/api/api/Controllers/FileUploadController.cs) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backend/api/api/Controllers/FileUploadController.cs b/backend/api/api/Controllers/FileController.cs index 3869a6fe..395c8cea 100644 --- a/backend/api/api/Controllers/FileUploadController.cs +++ b/backend/api/api/Controllers/FileController.cs @@ -8,13 +8,13 @@ namespace api.Controllers { [Route("api/[controller]")] [ApiController] - public class FileUploadController : ControllerBase + public class FileController : ControllerBase { private string[] permittedExtensions = { ".csv" }; private readonly IConfiguration _configuration; private JwtToken _token; private IFileService _fileservice; - public FileUploadController(IConfiguration configuration,IFileService fileService) + public FileController(IConfiguration configuration,IFileService fileService) { _configuration = configuration; _token = new JwtToken(configuration); |