From 50062d5e332c01f106f31fed1c9265a52617c05a Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Wed, 5 Apr 2017 16:45:21 -0400 Subject: [PATCH] rename method Get => GetUser --- src/Api/Controllers/OrganizationsController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Api/Controllers/OrganizationsController.cs b/src/Api/Controllers/OrganizationsController.cs index e9f2672d5..2f83f6cb2 100644 --- a/src/Api/Controllers/OrganizationsController.cs +++ b/src/Api/Controllers/OrganizationsController.cs @@ -48,7 +48,7 @@ namespace Bit.Api.Controllers } [HttpGet("")] - public async Task> Get() + public async Task> GetUser() { var userId = _userService.GetProperUserId(User).Value; var organizations = await _organizationRepository.GetManyByUserIdAsync(userId);