diff --git a/server/AyaNova/Controllers/ApiRootController.cs b/server/AyaNova/Controllers/ApiRootController.cs
index 6e939c30..599446f1 100644
--- a/server/AyaNova/Controllers/ApiRootController.cs
+++ b/server/AyaNova/Controllers/ApiRootController.cs
@@ -14,7 +14,7 @@ namespace AyaNova.Api.Controllers
///
[ApiVersion("8.0")]
[Route("api/v{version:apiVersion}/")]
- [AllowAnonymous]
+ [Authorize]
[ApiController]
public class ApiMetaController : ControllerBase
{
@@ -33,9 +33,10 @@ namespace AyaNova.Api.Controllers
}
///
- /// AyaNova API documentation and manual
+ /// Server landing page
///
///
+ [AllowAnonymous]
[HttpGet]
public async Task Index()
{
@@ -433,8 +434,7 @@ namespace AyaNova.Api.Controllers
///
/// Get API server info for general display
///
- /// API server info
- [Authorize]
+ /// API server info
[HttpGet("server-info")]
public ActionResult ServerInfo()
{
@@ -455,8 +455,7 @@ namespace AyaNova.Api.Controllers
///
/// Get build mode of server, used for automated testing purposes
///
- /// "DEBUG" or "RELEASE"
- [Authorize]
+ /// "DEBUG" or "RELEASE"
[HttpGet("build-mode")]
public ActionResult BuildMode()
{