mirror of
https://github.com/bitwarden/server.git
synced 2025-07-04 09:32:48 -05:00
[AC-1753] Automatically assign provider's pricing to new organizations (#3513)
* Initial commit * resolve pr comment * adding some unit test * Resolve pr comments * Adding some unit test * Resolve pr comment * changes to find the bug * revert back changes on admin * Fix the failing Test * fix the bug
This commit is contained in:
@ -21,6 +21,7 @@ public class ProviderResponseModel : ResponseModel
|
||||
BusinessCountry = provider.BusinessCountry;
|
||||
BusinessTaxNumber = provider.BusinessTaxNumber;
|
||||
BillingEmail = provider.BillingEmail;
|
||||
CreationDate = provider.CreationDate;
|
||||
}
|
||||
|
||||
public Guid Id { get; set; }
|
||||
@ -32,4 +33,5 @@ public class ProviderResponseModel : ResponseModel
|
||||
public string BusinessCountry { get; set; }
|
||||
public string BusinessTaxNumber { get; set; }
|
||||
public string BillingEmail { get; set; }
|
||||
public DateTime CreationDate { get; set; }
|
||||
}
|
||||
|
Reference in New Issue
Block a user