Browse Source

Rename `GetDomainDcAsync` to `GetDomainAsync`.

pull/11156/head
maliming 4 years ago
parent
commit
dc37dfafab
No known key found for this signature in database GPG Key ID: 96224957E51C89E
  1. 2
      framework/src/Volo.Abp.Ldap/Volo/Abp/Ldap/ILdapSettingProvider.cs
  2. 2
      framework/src/Volo.Abp.Ldap/Volo/Abp/Ldap/LdapSettingProvider.cs

2
framework/src/Volo.Abp.Ldap/Volo/Abp/Ldap/ILdapSettingProvider.cs

@ -10,7 +10,7 @@ public interface ILdapSettingProvider
public Task<string> GetBaseDcAsync();
public Task<string> GetDomainDcAsync();
public Task<string> GetDomainAsync();
public Task<string> GetUserNameAsync();

2
framework/src/Volo.Abp.Ldap/Volo/Abp/Ldap/LdapSettingProvider.cs

@ -29,7 +29,7 @@ public class LdapSettingProvider : ILdapSettingProvider, ITransientDependency
return await SettingProvider.GetOrNullAsync(LdapSettingNames.BaseDc);
}
public async Task<string> GetDomainDcAsync()
public async Task<string> GetDomainAsync()
{
return await SettingProvider.GetOrNullAsync(LdapSettingNames.Domain);
}

Loading…
Cancel
Save