1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-30 15:42:48 -05:00

[EC-247] Add columns to provider portal clients table (#2136)

* Added migration script to alter ProviderOrganizationOrganizationDetailsView to add new columns UserCount, Seats and Plan

* Modified EF query ProviderOrganizationOrganizationDetailsReadByProviderIdQuery

* Modified model to output new view columns

* Updated view to count only active users

* Filtering the organization user count by only confirmed users
This commit is contained in:
Rui Tomé
2022-07-28 09:31:03 +01:00
committed by GitHub
parent d1db4d31cb
commit 169a4381dd
4 changed files with 34 additions and 0 deletions

View File

@ -10,5 +10,8 @@
public string Settings { get; set; }
public DateTime CreationDate { get; set; }
public DateTime RevisionDate { get; set; }
public int UserCount { get; set; }
public int? Seats { get; set; }
public string Plan { get; set; }
}
}