DataInboxController Fix
This commit is contained in:
@@ -16,18 +16,15 @@ public class DataInboxController : Controller
|
|||||||
private readonly AppDbContext _db;
|
private readonly AppDbContext _db;
|
||||||
private readonly IConfiguration _configuration;
|
private readonly IConfiguration _configuration;
|
||||||
private readonly LogsController _logsController;
|
private readonly LogsController _logsController;
|
||||||
private readonly LayersController _layersController;
|
|
||||||
|
|
||||||
public DataInboxController(
|
public DataInboxController(
|
||||||
AppDbContext db,
|
AppDbContext db,
|
||||||
IConfiguration configuration,
|
IConfiguration configuration,
|
||||||
FirestoreDb firestoreDb,
|
FirestoreDb firestoreDb)
|
||||||
LayersController layersController)
|
|
||||||
{
|
{
|
||||||
_db = db;
|
_db = db;
|
||||||
_configuration = configuration;
|
_configuration = configuration;
|
||||||
_logsController = new LogsController(firestoreDb);
|
_logsController = new LogsController(firestoreDb);
|
||||||
_layersController = layersController;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
[HttpPut]
|
[HttpPut]
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user