diff --git a/API/Controllers/LibraryController.cs b/API/Controllers/LibraryController.cs index 4800a8cbb..42fa27659 100644 --- a/API/Controllers/LibraryController.cs +++ b/API/Controllers/LibraryController.cs @@ -42,12 +42,10 @@ namespace API.Controllers /// /// /// + [Authorize(Policy = "RequireAdminRole")] [HttpGet("list")] public ActionResult> GetDirectories(string path) { - // TODO: We need some sort of validation other than our auth layer - _logger.Log(LogLevel.Debug, "Listing Directories for " + path); - if (string.IsNullOrEmpty(path)) { return Ok(Directory.GetLogicalDrives()); @@ -57,7 +55,7 @@ namespace API.Controllers return Ok(_directoryService.ListDirectory(path)); } - + [HttpGet] public async Task>> GetLibraries() {