From bc86e077bd135dc289df68c26909f3589f5b7358 Mon Sep 17 00:00:00 2001 From: Polianin Nikita Date: Sat, 1 Feb 2025 19:39:02 +0300 Subject: [PATCH] refactor: move to SetupConfiguration namespace --- .../{Configuration => SetupConfiguration}/SetupController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename Endpoint/Controllers/{Configuration => SetupConfiguration}/SetupController.cs (99%) diff --git a/Endpoint/Controllers/Configuration/SetupController.cs b/Endpoint/Controllers/SetupConfiguration/SetupController.cs similarity index 99% rename from Endpoint/Controllers/Configuration/SetupController.cs rename to Endpoint/Controllers/SetupConfiguration/SetupController.cs index cf974a7..4477a0c 100644 --- a/Endpoint/Controllers/Configuration/SetupController.cs +++ b/Endpoint/Controllers/SetupConfiguration/SetupController.cs @@ -39,7 +39,7 @@ using CookieOptions = Microsoft.AspNetCore.Http.CookieOptions; using OAuthProvider = Mirea.Api.Security.Common.Domain.OAuthProvider; using PasswordPolicy = Mirea.Api.Dto.Common.PasswordPolicy; -namespace Mirea.Api.Endpoint.Controllers.Configuration; +namespace Mirea.Api.Endpoint.Controllers.SetupConfiguration; [ApiVersion("1.0")] [MaintenanceModeIgnore]