Skip to content

Commit

Permalink
Merge pull request #20635 from abpframework/auto-merge/rel-8-3/2942
Browse files Browse the repository at this point in the history
Merge branch dev with rel-8.3
  • Loading branch information
maliming authored Aug 26, 2024
2 parents 0f9c405 + 7322992 commit 895d320
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ public Task FillAsync(List<SettingDefinitionRecord> settingRecords)
record.IsInherited,
record.IsEncrypted);

if (!record.Providers.IsNullOrWhiteSpace())
{
settingDefinition.Providers.AddRange(record.Providers.Split(','));
}

foreach (var property in record.ExtraProperties)
{
settingDefinition.WithProperty(property.Key, property.Value);
Expand Down

0 comments on commit 895d320

Please sign in to comment.