ok, Thanks. Our Angular developers will check this.
hi
Package :Volo.Abp.AspNetCore.Mvc/
namespace Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations;
https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.AspNetCore.Mvc/Volo/Abp/AspNetCore/Mvc/ApplicationConfigurations/AbpApplicationConfigurationAppService.cs#L24
https://docs.abp.io/en/abp/latest/Customizing-Application-Modules-Overriding-Services
hi
Add these code to the web.public project.
public override void ConfigureServices(ServiceConfigurationContext context)
{
var serviceType = typeof (CmsKitProPublicApplicationContractsModule).Assembly.GetTypes().FirstOrDefault(x => x == typeof(IUrlShortingPublicAppService));
if (serviceType != null)
{
context.Services.Configure<AbpHttpClientOptions>(options =>
{
options.HttpClientProxies[serviceType] = new HttpClientProxyConfig(serviceType, "CmsKitProPublic");
});
}
}
hi
It seems the issue has been fixed.
Can you reproduce problem and share the project with me?
liming.ma@volosoft.com
https://support.abp.io/QA/Questions/3217/How-can-I-customize-login-page-in-blazor-server-app#answer-9c9753b6-6daf-598c-976e-3a046e524425
You can only use different connection strings in different environments, otherwise there will be conflicts.
hi
Create a class and inherit the AbpApplicationConfigurationAppService then override the methods.
[ExposeServices(typeof(IAbpApplicationConfigurationAppService), typeof(AbpApplicationConfigurationAppServiceApplicationService))]
public class MyAbpApplicationConfigurationAppService : AbpApplicationConfigurationAppService
hi
Mainly the account module, because there may be many changes, I suggest you download the source code of the module.
hi
If the error messages are not user friendly, you can customize them.
https://github.com/abpframework/abp/tree/dev/modules/identity/src/Volo.Abp.Identity.Domain.Shared/Volo/Abp/Identity/Localization https://github.com/abpframework/abp/blob/dev/modules/identity/src/Volo.Abp.Identity.Domain.Shared/Volo/Abp/Identity/Localization/en.json
The Password should include a number, a capital, and a special character. message not seems a identity error message.
Can you check your password rule in setting page and error logs?
Also can you check these page is angular or mvc?
hi
You can switch to the Host side, then query all tenants, and then switch to the tenant side to try to match the email/username
https://docs.abp.io/en/abp/latest/Multi-Tenancy#change-the-current-tenant