Activities of "ilkayilknur"

I'm not able to reproduce the issue. I followed the steps inside the document and run the project.

To see the "or login with" section, you need to configure external login providers. I followed the steps here for Facebook provider.

I'm not able to reproduce the issue. Can you run the command below and ensure that suite and CLI both have the same version?

dotnet tool list -g

Yes, you're right. I removed all solutions and I can reproduce the issue right now. I opened an issue internally to fix this. As a workaround you can create a solution temporarily and download the source of the module.

See https://docs.abp.io/en/abp/latest/Module-Entity-Extensions#default-value

You can also specify default value for the extension property in {ProjectName}EfCoreEntityExtensionMappings.cs inside {ProjectName}.EntityFrameworkCore project like this.

ObjectExtensionManager.Instance
    .MapEfCoreProperty<IdentityUser, string>(
        "SocialSecurityNumber",
        (entityBuilder, propertyBuilder) =>
        {
            propertyBuilder.HasDefaultValue("test");
        }
    );
Answer

Hi, You can inject IUiMessageService and call Confirm method to display a confirmation modal. See https://docs.abp.io/en/abp/latest/UI/Blazor/Message#confirmation-message

I don't understand the question. Do you want to change the paging component?

It looks like there is a bug. I will investigate further and get back to you. Thanks for reaching out.

Yes, We accept translation contributions for the commercial side as well. I think Alper can help with the process.

Hi, I tried search command and it worked. You can use it.

nuget search -source https://nuget.abp.io/secret/v3/index.json

Showing 1 to 10 of 13 entries
Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11