From 6c2033ad11181ea89149374db405662a090c82b2 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Wed, 13 May 2020 23:47:30 +0000 Subject: [PATCH] --- server/AyaNova/Controllers/ApiRootController.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server/AyaNova/Controllers/ApiRootController.cs b/server/AyaNova/Controllers/ApiRootController.cs index ac7f1438..a1ee3af2 100644 --- a/server/AyaNova/Controllers/ApiRootController.cs +++ b/server/AyaNova/Controllers/ApiRootController.cs @@ -434,7 +434,7 @@ namespace AyaNova.Api.Controllers /// Get API server info for general display /// /// API server info - [HttpGet("ServerInfo")] + [HttpGet("server-info")] public ActionResult ServerInfo() { return Ok(new @@ -455,7 +455,7 @@ namespace AyaNova.Api.Controllers /// Get build mode of server, used for automated testing purposes /// /// "DEBUG" or "RELEASE" - [HttpGet("BuildMode")] + [HttpGet("build-mode")] public ActionResult BuildMode() { return Ok(new { data = new { BuildMode = "DEBUG" } }); @@ -465,7 +465,7 @@ namespace AyaNova.Api.Controllers /// Get build mode of server, used for automated testing purposes /// /// "DEBUG" or "RELEASE" - [HttpGet("BuildMode")] + [HttpGet("build-mode")] public ActionResult BuildMode() { return Ok(new { data = new { BuildMode = "RELEASE" } });