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) {