mirror of
https://github.com/QuotifyTeam/QuotifyBE.git
synced 2025-12-16 19:20:06 +01:00
chore: nitpicky details
This commit is contained in:
@@ -29,7 +29,7 @@ public class CategoryController : ControllerBase
|
|||||||
|
|
||||||
// GET /api/v1/categories
|
// GET /api/v1/categories
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get a page category
|
/// Get a category page
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// Can (and will) return an empty list if no categories are found in DB. <br/>
|
/// Can (and will) return an empty list if no categories are found in DB. <br/>
|
||||||
|
|||||||
@@ -10,12 +10,12 @@ namespace QuotifyBE.Controllers;
|
|||||||
[EnableCors]
|
[EnableCors]
|
||||||
[Route("api/v1/stats")]
|
[Route("api/v1/stats")]
|
||||||
[Produces("application/json")]
|
[Produces("application/json")]
|
||||||
public class StatisticController : ControllerBase
|
public class StatisticsController : ControllerBase
|
||||||
{
|
{
|
||||||
|
|
||||||
private readonly ApplicationDbContext _db;
|
private readonly ApplicationDbContext _db;
|
||||||
|
|
||||||
public StatisticController( ApplicationDbContext db)
|
public StatisticsController( ApplicationDbContext db)
|
||||||
{
|
{
|
||||||
_db = db;
|
_db = db;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user