1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-04 01:22:50 -05:00

[PM-15485] Add provider plan details to provider Admin pages (#5326)

* Add Provider Plan details to Provider Admin pages

* Run dotnet format

* Thomas' feedback

* Updated code ownership

* Robert's feedback

* Thomas' feedback
This commit is contained in:
Alex Morask
2025-02-14 12:03:09 -05:00
committed by GitHub
parent 288f08da2a
commit 5709ea36f4
12 changed files with 128 additions and 6 deletions

View File

@ -35,6 +35,7 @@ public class ProviderOrganizationOrganizationDetailsReadByProviderIdQuery : IQue
OccupiedSeats = x.o.OrganizationUsers.Count(ou => ou.Status >= 0),
Seats = x.o.Seats,
Plan = x.o.Plan,
PlanType = x.o.PlanType,
Status = x.o.Status
});
}