Browse Source
Make GetAllAsync method of SettingProvider virtual.
Close #7810
pull/7813/head
maliming
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
framework/src/Volo.Abp.Settings/Volo/Abp/Settings/SettingProvider.cs
|
|
|
@ -43,7 +43,7 @@ namespace Volo.Abp.Settings |
|
|
|
return value; |
|
|
|
} |
|
|
|
|
|
|
|
public async Task<List<SettingValue>> GetAllAsync(string[] names) |
|
|
|
public virtual async Task<List<SettingValue>> GetAllAsync(string[] names) |
|
|
|
{ |
|
|
|
var result = new Dictionary<string, SettingValue>(); |
|
|
|
var settingDefinitions = SettingDefinitionManager.GetAll().Where(x => names.Contains(x.Name)).ToList(); |
|
|
|
|