chore: nitpicky details

This commit is contained in:
2025-07-22 14:08:37 +02:00
parent 197918e526
commit ba162c34cc
2 changed files with 3 additions and 3 deletions

View File

@@ -10,12 +10,12 @@ namespace QuotifyBE.Controllers;
[EnableCors]
[Route("api/v1/stats")]
[Produces("application/json")]
public class StatisticController : ControllerBase
public class StatisticsController : ControllerBase
{
private readonly ApplicationDbContext _db;
public StatisticController( ApplicationDbContext db)
public StatisticsController( ApplicationDbContext db)
{
_db = db;
}