1
0
mirror of https://github.com/bitwarden/server synced 2025-12-22 11:13:27 +00:00

Revert "Revert [PM-6201] (#5143)" (#5144)

This reverts commit c99b4106f5.
This commit is contained in:
Jonas Hendrickx
2025-01-08 09:26:40 +01:00
committed by GitHub
parent cc96e35072
commit b096568eea
2 changed files with 3 additions and 10 deletions

View File

@@ -10,4 +10,6 @@ public class OrganizationsModel : PagedModel<Organization>
public bool? Paid { get; set; }
public string Action { get; set; }
public bool SelfHosted { get; set; }
public double StorageGB(Organization org) => org.Storage.HasValue ? Math.Round(org.Storage.Value / 1073741824D, 2) : 0;
}