aboutsummaryrefslogtreecommitdiff
path: root/backend/api
diff options
context:
space:
mode:
authorOgnjen Cirkovic <ciraboxkg@gmail.com>2022-03-16 13:13:11 +0100
committerOgnjen Cirkovic <ciraboxkg@gmail.com>2022-03-16 13:13:11 +0100
commitdd855dc9241274d1d7e80efd208f243810163d23 (patch)
tree577d7757b20e6d0d02e098e659fb28a320e0fcd9 /backend/api
parent5eddd6dde8a348ef767f2e270fe2c0fd001033e0 (diff)
Promenjeno ime FileUploadController u FileController.
Diffstat (limited to 'backend/api')
-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);