mirror of
https://github.com/bitwarden/server.git
synced 2025-07-02 16:42:50 -05:00
Sent initiation path for organization and user signups (#3723)
This commit is contained in:
@ -48,6 +48,8 @@ public class OrganizationCreateRequestModel : IValidatableObject
|
||||
public bool UseSecretsManager { get; set; }
|
||||
public bool IsFromSecretsManagerTrial { get; set; }
|
||||
|
||||
public string InitiationPath { get; set; }
|
||||
|
||||
public virtual OrganizationSignup ToOrganizationSignup(User user)
|
||||
{
|
||||
var orgSignup = new OrganizationSignup
|
||||
@ -79,6 +81,7 @@ public class OrganizationCreateRequestModel : IValidatableObject
|
||||
BillingAddressPostalCode = BillingAddressPostalCode,
|
||||
BillingAddressCountry = BillingAddressCountry,
|
||||
},
|
||||
InitiationPath = InitiationPath,
|
||||
};
|
||||
|
||||
Keys?.ToOrganizationSignup(orgSignup);
|
||||
|
Reference in New Issue
Block a user