diff --git a/Newsbot.Collector.Api/Controllers/AccountController.cs b/Newsbot.Collector.Api/Controllers/v1/IdentityController.cs similarity index 91% rename from Newsbot.Collector.Api/Controllers/AccountController.cs rename to Newsbot.Collector.Api/Controllers/v1/IdentityController.cs index a0c7d85..ddfd6e7 100644 --- a/Newsbot.Collector.Api/Controllers/AccountController.cs +++ b/Newsbot.Collector.Api/Controllers/v1/IdentityController.cs @@ -6,15 +6,15 @@ using Newsbot.Collector.Api.Domain.Response; using Newsbot.Collector.Api.Domain.Results; using Newsbot.Collector.Api.Services; -namespace Newsbot.Collector.Api.Controllers; +namespace Newsbot.Collector.Api.Controllers.v1; [ApiController] -[Route("/api/account")] -public class AccountController : ControllerBase +[Route("/api/v1/account")] +public class IdentityController : ControllerBase { private IIdentityService _identityService; - public AccountController(IIdentityService identityService) + public IdentityController(IIdentityService identityService) { _identityService = identityService; } @@ -71,7 +71,7 @@ public class AccountController : ControllerBase } [HttpPost("addRole")] - [Authorize(Roles = AuthorizationRoles.Administrators)] + [Authorize(Roles = Authorization.AdministratorsRole)] public ActionResult AddRole([FromBody] AddRoleRequest request) { try