ddd-refactor #2

Merged
mz merged 46 commits from ddd-refactor into main 2025-11-28 11:14:43 +01:00
4 changed files with 4 additions and 4 deletions
Showing only changes of commit a66e2a86da - Show all commits

View File

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

View File

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

View File

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

View File

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