HI,
Got it, I will check it out.
HI,
Can I check it remotely? shiwei.liang@volosoft.com
Okay,
Please email me, shiwei.liang@volosoft.com
I am able to get it redirected now but when redirected it is loading the login page in FinRecon . I want the Home Page of FinRecon to be loaded default when redirected from MainApp.
Sorry, you can't.
Also I want the menu options which is shown in the screen shot to be removed from the FinRecon App ( Dashboard, Saas and Administrator Menus to be removed from the FinRecon App)
See https://docs.abp.io/en/abp/latest/UI/Angular/Modifying-the-Menu#how-to-add-a-navigation-element
Could you share the code? thanks.
Getting error : The property 'IdentityUser.IsActive' could not be found. Ensure that the property exists and has been included in the model.
See https://docs.abp.io/en/abp/latest/Entity-Framework-Core#mapefcoreproperty
My debugger didn't even hit this LitmusUserValidator ValidateAsync method while logging in
Try Put to PreConfigureServices
Hi,
I have test, you can try SeedDataAsync
method in the <YourProjectName>DbMigrationService
and replace it with the following code:
private async Task SeedDataAsync(Tenant tenant = null)
{
Logger.LogInformation($"Executing {(tenant == null ? "host" : tenant.Name + " tenant")} database seed...");
using (var uow = _unitOfWorkManager.Begin(true, true))
{
await _dataSeeder.SeedAsync(new DataSeedContext(tenant?.Id)
.WithProperty(IdentityDataSeedContributor.AdminEmailPropertyName, IdentityDataSeedContributor.AdminEmailDefaultValue)
.WithProperty(IdentityDataSeedContributor.AdminPasswordPropertyName, IdentityDataSeedContributor.AdminPasswordDefaultValue)
);
await uow.CompleteAsync();
}
}
Hi,
You can try use CultureInfo.CurrentUICulture
.
Hi,
Because this qustion has not been active for a long time, system will automatically close it.
Is there a way where I find one item of this list and want to update its "PropertyAdded" column. How do I do this ?
I think the document it clear, you can check it: https://docs.abp.io/en/abp/latest/Object-Extensions#setproperty
Is there any abp.io document where implementation of UserValidator class is provided ? Can you provide me sample of this class ? And how can I find my custom column here ?
Example:
public class MyUserValidator<TUser> : IUserValidator<TUser> where TUser : Volo.Abp.Identity.IdentityUser
{
private readonly IIdentityUserRepository _userRepository;
public MyUserValidator(IIdentityUserRepository userRepository)
{
_userRepository = userRepository;
}
public Task<IdentityResult> ValidateAsync(UserManager<TUser> manager, TUser user)
{
//....
}
}
PreConfigure<IdentityBuilder>(builder =>
{
builder.AddUserValidator<MyUserValidator<Volo.Abp.Identity.IdentityUser>>();
});
In the below code there is one option called options.SignIn.RequireConfirmedEmail If I would able to find my added column here I think it will resolve my issue.
No you can't