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" } });