Activities of "maliming"

Answer

hi

The ABP suite is not designed for API calls. All the input parameters are explained in the UI.

If you want to use the API, you can check the api http request in the Chrome Network Panel.

Thanks

hi

You don't need to add a wildcard domain to the database; you only need add it to WildcardDomainsFormat

Thanks

PreConfigure<AbpOpenIddictWildcardDomainOptions>(options =>
{
    options.EnableWildcardDomainSupport = true;
    options.WildcardDomainsFormat.Add("https://{0}.our.app");
});

hi

context.Services.ConfigureApplicationCookie(options =>
{
    var previousOnSignedIn = options.Events.OnSignedIn;
    options.Events.OnSignedIn = async cookieSignedInContext =>
    {
        await previousOnSignedIn(cookieSignedInContext);
        
        // Your code
        
    };

    var previousOnSigningOut = options.Events.OnSigningOut;
    options.Events.OnSigningOut = async cookieSigningOutContext =>
    {
        await previousOnSigningOut(cookieSigningOutContext);

        // Your code
    };
});

Great

hi

{} and null is no problem.

But {{}} is wrong.

Do you remember why {{}} is write to database? Can you share some code?

Thanks.

Great : )

hi

Can you check the entity data in the database with eventData.Id?

Key focus on the ExtraProperties property.

Thanks.

hi

The EmailTokenProvider implementation is TotpSecurityStampBasedTokenProvider by default.

It uses a fixed TimeSpan.FromMinutes(3) value.

see https://github.com/dotnet/aspnetcore/issues/27088

Thanks.

Answer

Thanks, we also will increase the length in abp 10.0

hi

Can you share your event class?

It seems that there is an issue with the data in the database.

Please also share the code of MaintenanceRequestClosedEventHandler.cs

Thanks

Showing 1191 to 1200 of 12044 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 February 27, 2026, 05:41
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.