Activities of "maliming"

hi

I will find a way.

is therefore the first one to be called.

Add it to the last position.

Configure<AbpFeatureOptions>(options =>
{
    options.ValueProviders.Add<FvpRoleBasedFeatureValueProvider>();
});

hi

What is the final URL format you expect?

Like this? https://localhost:44303/tenantname/api/abp

hi

Configure<AbpFeatureOptions>(options =>
{
    options.ValueProviders.Insert(0, typeof(FvpRoleBasedFeatureValueProvider));
});

The valueProviders order is

DefaultValueFeatureValueProvider
EditionFeatureValueProvider
TenantFeatureValueProvider

Your FvpRoleBasedFeatureValueProvider should be added after DefaultValueFeatureValueProvider,

eg:

DefaultValueFeatureValueProvider

FvpRoleBasedFeatureValueProvider

EditionFeatureValueProvider
TenantFeatureValueProvider

But this depends on your business logic. You can add before TenantFeatureValueProvider.

eg:

DefaultValueFeatureValueProvider
EditionFeatureValueProvider
TenantFeatureValueProviderr

FvpRoleBasedFeatureValueProvider

hi

The RequireFeatures method of ApplicationMenuItem requires the feature that is ToggleStringValueType

Your features both are FreeTextStringValueType

hi

I will test it again.

Thanks.

你可以参考这个文章, 下载 LeptonX 的源码, 之后自定义样式重新构建主题

https://abp.io/docs/latest/ui-themes/lepton-x#source-code https://abp.io/docs/latest/ui-themes/lepton-x/source-files

hi

If your current url is https://localhost:44303/Weather/test and route template include __tenant

Which mean you need add __tenant to your route template

[Route("[Controller]/{__tenant}")]
public class WeatherController : MyProjectNameController
{
    [HttpGet]
    public IActionResult GetWeather()
    {
        return Ok($"Current tenant is {CurrentTenant.Name}");
    }

See https://learn.microsoft.com/en-us/aspnet/core/fundamentals/routing

你的 UI 是? 当前的主题模块是?

  • Your User Interface type (Angular/MVC/React... etc.)

hi

Do you have ConfigureDataProtection method in your module?

Please enable and share debug logs. It will contain the error detail info.

Thanks.

private void ConfigureDataProtection(ServiceConfigurationContext context, IConfiguration configuration, IConnectionMultiplexer redis)
{
    context.Services
        .AddDataProtection()
        .SetApplicationName(configuration["DataProtection:ApplicationName"]!)
        .PersistKeysToStackExchangeRedis(redis, configuration["DataProtection:Keys"]);
}
Showing 1231 to 1240 of 10652 entries
Learn More, Pay Less
33% OFF
All Trainings!
Get Your Deal
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.0.0-preview. Updated on September 12, 2025, 10:20