change endpoints path
All checks were successful
Build Docker Images / test (push) Successful in 1m18s
Build Docker Images / build-and-push (push) Successful in 1m25s

This commit is contained in:
Michał Zieliński
2025-11-13 11:15:32 +01:00
parent 7cd69da0bd
commit a66e2a86da
4 changed files with 4 additions and 4 deletions

View File

@@ -5,7 +5,7 @@ using Microsoft.AspNetCore.Mvc;
namespace DiunaBI.API.Controllers;
[ApiController]
[Route("api/[controller]")]
[Route("[controller]")]
public class AuthController(
GoogleAuthService googleAuthService,
JwtTokenService jwtTokenService,

View File

@@ -8,7 +8,7 @@ using DiunaBI.Domain.Entities;
namespace DiunaBI.API.Controllers;
[ApiController]
[Route("api/[controller]")]
[Route("[controller]")]
public class DataInboxController : Controller
{
private readonly AppDbContext _db;

View File

@@ -11,7 +11,7 @@ using DiunaBI.Infrastructure.Services;
namespace DiunaBI.API.Controllers;
[ApiController]
[Route("api/[controller]")]
[Route("[controller]")]
public class LayersController : Controller
{
private readonly AppDbContext _db;

View File

@@ -5,7 +5,7 @@ using Microsoft.AspNetCore.Mvc;
namespace DiunaBI.API.Controllers;
[ApiController]
[Route("api/[controller]")]
[Route("[controller]")]
[Authorize]
public class TestsController : Controller
{