From 732659ed76752706399aec3f692d57f532b4cb62 Mon Sep 17 00:00:00 2001 From: Thomas Rittson Date: Thu, 15 Jan 2026 15:18:25 +1000 Subject: [PATCH] Follow naming conventions --- src/Api/AdminConsole/Public/Controllers/MembersController.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Api/AdminConsole/Public/Controllers/MembersController.cs b/src/Api/AdminConsole/Public/Controllers/MembersController.cs index 40b215f6be..bc26dd6e5e 100644 --- a/src/Api/AdminConsole/Public/Controllers/MembersController.cs +++ b/src/Api/AdminConsole/Public/Controllers/MembersController.cs @@ -277,7 +277,7 @@ public class MembersController : Controller [ProducesResponseType((int)HttpStatusCode.OK)] [ProducesResponseType(typeof(ErrorResponseModel), (int)HttpStatusCode.BadRequest)] [ProducesResponseType((int)HttpStatusCode.NotFound)] - public async Task PutRevoke(Guid id) + public async Task Revoke(Guid id) { var organizationUser = await _organizationUserRepository.GetByIdAsync(id); if (organizationUser == null || organizationUser.OrganizationId != _currentContext.OrganizationId) @@ -311,7 +311,7 @@ public class MembersController : Controller [ProducesResponseType((int)HttpStatusCode.OK)] [ProducesResponseType(typeof(ErrorResponseModel), (int)HttpStatusCode.BadRequest)] [ProducesResponseType((int)HttpStatusCode.NotFound)] - public async Task PutRestore(Guid id) + public async Task Restore(Guid id) { var organizationUser = await _organizationUserRepository.GetByIdAsync(id); if (organizationUser == null || organizationUser.OrganizationId != _currentContext.OrganizationId)