1
0
mirror of https://github.com/bitwarden/server synced 2025-12-14 07:13:39 +00:00

Revert "[PM-25379] Refactor org metadata (#6418)" (#6439)

This reverts commit 3bef57259d.
This commit is contained in:
Kyle Denney
2025-10-10 09:06:58 -05:00
committed by GitHub
parent c9970a0782
commit 3272586e31
12 changed files with 97 additions and 498 deletions

View File

@@ -38,7 +38,9 @@ public class OrganizationBillingController(
return Error.NotFound();
}
return TypedResults.Ok(metadata);
var response = OrganizationMetadataResponse.From(metadata);
return TypedResults.Ok(response);
}
[HttpGet("history")]