DataInboxController Fix

This commit is contained in:
Michał Zieliński
2025-03-30 15:14:25 +02:00
parent ebb98191a6
commit 524fb27d6a
2 changed files with 7 additions and 8 deletions

View File

@@ -16,18 +16,15 @@ public class DataInboxController : Controller
private readonly AppDbContext _db;
private readonly IConfiguration _configuration;
private readonly LogsController _logsController;
private readonly LayersController _layersController;
public DataInboxController(
AppDbContext db,
IConfiguration configuration,
FirestoreDb firestoreDb,
LayersController layersController)
FirestoreDb firestoreDb)
{
_db = db;
_configuration = configuration;
_logsController = new LogsController(firestoreDb);
_layersController = layersController;
}
[HttpPut]

File diff suppressed because one or more lines are too long