From 50036daa784a7d7bfafb2706024ba3b083b72770 Mon Sep 17 00:00:00 2001 From: Kim Date: Thu, 23 Mar 2023 15:46:19 +0100 Subject: [PATCH] typo --- csharp/App/Backend/Controllers/Controller.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/csharp/App/Backend/Controllers/Controller.cs b/csharp/App/Backend/Controllers/Controller.cs index 627e52c02..db58b240b 100644 --- a/csharp/App/Backend/Controllers/Controller.cs +++ b/csharp/App/Backend/Controllers/Controller.cs @@ -180,7 +180,7 @@ public class Controller : ControllerBase return user.ChildUsers().ToList(); } - + [HttpGet(nameof(GetAllChildUsers))] public ActionResult> GetAllChildUsers(Token authToken) { @@ -189,8 +189,9 @@ public class Controller : ControllerBase return Unauthorized(); return user.DescendantUsers().ToList(); + } + - [HttpGet(nameof(GetAllInstallations))] public ActionResult> GetAllInstallations(Token authToken) {