aboutsummaryrefslogtreecommitdiff
path: root/API/Controllers
diff options
context:
space:
mode:
Diffstat (limited to 'API/Controllers')
-rw-r--r--API/Controllers/UserController.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/API/Controllers/UserController.cs b/API/Controllers/UserController.cs
index b75d081..c2d6f2c 100644
--- a/API/Controllers/UserController.cs
+++ b/API/Controllers/UserController.cs
@@ -31,7 +31,7 @@ namespace API.Controllers
//Read
[HttpGet]
- public async Task<string> GetUserById(int id)
+ public async Task<string> GetById(int id)
{
return await this._service.GetUserById(id);
}