UX consistancy changes.

This commit is contained in:
2026-04-16 18:41:01 -07:00
parent 8ff071c69b
commit 7545441a3e
675 changed files with 70964 additions and 593 deletions

View File

@@ -143,7 +143,7 @@ public class EnvironmentsController(EnvironmentService environmentService, Webho
if (environment is null) return NotFound();
var (_, logs) = await auditLogQueryService.ListByEnvironmentAsync(environment.Id, new Audit.AuditLogFilter(), ct);
return Ok(logs.Select(Audit.AuditLogResponse.From).ToList());
return Ok(logs.ToList());
}
[HttpGet("{apiKey}/identities")]