Skip to content

Commit

Permalink
fix(management): add persistence mapping of missing fields
Browse files Browse the repository at this point in the history
Added mapping of 'RequireAuthentication' and 'MaximumConcurrentConnectorRequests' fields when trying to add or update tenant via ManagementApi
  • Loading branch information
pascalisenschmid-kms authored and thomashilzendegen committed Nov 15, 2023
1 parent 471032d commit e8452b8
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ public static void UpdateFrom(this Tenant instance, Tenant other)

instance.DisplayName = other.DisplayName;
instance.Description = other.Description;
instance.RequireAuthentication = other.RequireAuthentication;
instance.MaximumConcurrentConnectorRequests = other.MaximumConcurrentConnectorRequests;

// copy over config if available
if (other.Config != null)
Expand Down

0 comments on commit e8452b8

Please sign in to comment.