Activities of "maliming"

hi

I think they are very similar. You can download and check the source code of lepton.

hi

You need to define the Features in your module.

https://docs.abp.io/en/abp/latest/Features https://docs.abp.io/en/abp/latest/Features#featuredefinitionprovider

hi Ravisha

But I don't see tenant switch option in the login page. so how do i add my link to the other tenant.

After you use the domain name to resolve the tenant, you can only manually change the url.

Change https://t1.abptest.com to https://t2.abptest.com.

hi simix.markus

I can generate the abp-translation.json file of pt-BR and send to you. Please send me a mail: liming.ma@volosoft.com

hi

Please check this demo https://github.com/abpframework/abp-samples/tree/master/DocumentationSamples/ExtendLocalizationResource

hi Ravisha

Can you share some screenshots about "my link user"? Thanks

hi lalitChougule

Please create a class that repleace IdentityUserManager in you test project instead of mock it.

[Dependency(ReplaceServices = true)]
[ExposeServices(typeof(IdentityUserManager))]
public class MyIdentityUserManager : IdentityUserManager
{
    public MyIdentityUserManager(IdentityUserStore store, IIdentityRoleRepository roleRepository,
        IIdentityUserRepository userRepository, IOptions<IdentityOptions> optionsAccessor,
        IPasswordHasher<IdentityUser> passwordHasher, IEnumerable<IUserValidator<IdentityUser>> userValidators,
        IEnumerable<IPasswordValidator<IdentityUser>> passwordValidators, ILookupNormalizer keyNormalizer,
        IdentityErrorDescriber errors, IServiceProvider services, ILogger<IdentityUserManager> logger,
        ICancellationTokenProvider cancellationTokenProvider,
        IOrganizationUnitRepository organizationUnitRepository, ISettingProvider settingProvider) : base(store,
        roleRepository, userRepository, optionsAccessor, passwordHasher, userValidators, passwordValidators,
        keyNormalizer, errors, services, logger, cancellationTokenProvider, organizationUnitRepository,
        settingProvider)
    {
    }

    public override Task<IdentityUser> FindByIdAsync(string userId)
    {
        if (userId == "39faa1bb-6509-6a7d-b17f-0deee2cf47db")
        {
            return Task.FromResult(new IdentityUser( //...))
        }

        return base.FindByIdAsync(userId);
    }
}
Answer

hi gvnuysal

Can you check if there is a bearer token in the request header?

hi

You can implementation your own AWSSESEmailSender, Just like MailKitSmtpEmailSender .

https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.MailKit/Volo/Abp/MailKit/MailKitSmtpEmailSender.cs#L15 https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.MailKit/Volo/Abp/MailKit/AbpMailKitModule.cs https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.MailKit/Volo/Abp/MailKit/IMailKitSmtpEmailSender.cs https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.MailKit/Volo/Abp/MailKit/AbpMailKitOptions.cs

services.Replace(ServiceDescriptor.Transient<IClientConfigurationValidator, AbpClientConfigurationValidator>()); There is no method called Replace() IcollectionService.

using Microsoft.Extensions.DependencyInjection.Extensions;

So I manually updated the database table and after that cors issue resolved.

You shouldn't do that, These extension methods will handle it. Please refer to the demo I provided above.

AddAbpStrictRedirectUriValidator
AddAbpClientConfigurationValidator
AddAbpWildcardSubdomainCorsPolicyService

now "my link user" feature is will not working between the tenants.

Can you explain? Is there any error or somthing?

We have requirement one user can login to multiple tenants with same user createntials or different credeantilas, how do we resolve this.

If this is a new question, please create a new thread.

Showing 11181 to 11190 of 12088 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.3.0-preview. Updated on March 02, 2026, 08:48
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.