From f14f6c1f152e42abcd588673cf4b3c67e89bfb5b Mon Sep 17 00:00:00 2001 From: TekH Date: Fri, 16 Jan 2026 10:48:42 +0100 Subject: [PATCH] Rename GetProfile method to Get in ProfileController Renamed the GetProfile method to Get in the ProfileController to standardize method naming. No changes were made to the method's functionality or parameters. --- src/ReC.API/Controllers/ProfileController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ReC.API/Controllers/ProfileController.cs b/src/ReC.API/Controllers/ProfileController.cs index c2f1eb5..54568fd 100644 --- a/src/ReC.API/Controllers/ProfileController.cs +++ b/src/ReC.API/Controllers/ProfileController.cs @@ -13,7 +13,7 @@ namespace ReC.API.Controllers; public class ProfileController(IMediator mediator) : ControllerBase { [HttpGet] - public async Task GetProfile([FromQuery] ReadProfileViewQuery query, CancellationToken cancel) + public async Task Get([FromQuery] ReadProfileViewQuery query, CancellationToken cancel) { return Ok(await mediator.Send(query, cancel)); }