Hi,
you have to add it to the module level. since modules can be designed to be multi-tenant or not
Hi,
you can try
services.ConfigureApplicationCookie(options =>
{
options.ExpireTimeSpan = TimeSpan.FromMinutes(10);
options.SlidingExpiration = true;
});
Hi,
i can not reproduce the problem, could you share the full steps to reproduce?
abp new Qa7750 -u angular --old
ObjectExtensionManager.Instance.Modules()
.ConfigureIdentity(identity =>
{
identity.ConfigureUser(user =>
{
user.AddOrUpdateProperty<string>(
"Passcode",
property =>
{
property.Attributes.Add(new StringLengthAttribute(12) { MinimumLength = 6 });
property.DisplayName = new FixedLocalizableString("Passcode");
property.Configuration[IdentityModuleExtensionConsts.ConfigurationNames.AllowUserToEdit] = true;
}
);
});
});
Hi,
The answer is yes. You can develop a function like this without a problem.
If you don't want to start from scratch, you can check the Forms module provider by ABP https://abp.io/modules/Volo.Forms
Hi,
Here's how the replacement page works: https://abp.io/community/articles/how-to-customize-the-login-page-for-mvc-razor-page-applications-9a40f3cd
you can download the account pro source code and copy the login page code to your project.
abp get-source Volo.Abp.Account.Pro
copy
_ViewImports.cshtml
toPages/Account
too
Hi,
can you share the full error logs
Hi,
yes, you can download it without problem.
It's a recurring task - something system related
Here is the option to control it https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.AspNetCore.Mvc.Client/Volo/Abp/AspNetCore/Mvc/Client/AbpAspNetCoreMvcClientCacheOptions.cs#L11