Activities of "liangshiwei"

The problem has been solved. Because you changed the default page size.

Hi,

For blog module problem: https://github.com/abpframework/abp/issues/6473#issuecomment-738703428

We have written documentation for all commercial modules : ), and we will to improve the documentation of open source modules,they are already in the milestone. Thanks.

About payment module document, see: https://docs.abp.io/en/commercial/latest/modules/payment

Hi,

For 3.3.2 project , you can try:

context.Services.AddSwaggerGen(
        options =>
        {
            options.SwaggerDoc("v1", new OpenApiInfo {Title = "MyProjectName API", Version = "v1"});
            options.DocInclusionPredicate((docName, description) => true);

            options.AddSecurityDefinition("Bearer",
                new OpenApiSecurityScheme() {
                    Description = @"JWT Authorization header using the Bearer scheme. \r\n\r\n 
                                  Enter 'Bearer' [space] and then your token in the text input below.
                                  \r\n\r\nExample: 'Bearer 12345678'",
                    Name = "Authorization",
                    In = ParameterLocation.Header,
                    Type = SecuritySchemeType.ApiKey,
                    Scheme = "Bearer"});
            options.AddSecurityRequirement(new OpenApiSecurityRequirement()
            {
                {
                    new OpenApiSecurityScheme
                    {
                        Reference = new OpenApiReference
                        {
                            Type = ReferenceType.SecurityScheme,
                            Id = "Bearer"
                        },
                        Scheme = "oauth2",
                        Name = "Bearer",
                        In = ParameterLocation.Header,

                    },
                    new List<string>()
                }
            });
        });

Use postman to get access_token,copy and put it in the input box.

Hi,

I have some questions

  • What is common UI?
  • You want to create a RecurringJobAdmin module right?

Please send an email to me. shiwei.liang@volosoft.com

Hi,

Can I check it remotely? shiwei.liang@volosoft.com

Hi,

There is no good way yet. You need to manually add entities to the suite.

Or you can write a program to read the entity definition in excel and call the Suite API

Sorry,

I need more infomation. Can I check it remotely? shiwei.liang@volosoft.com

Hi,

Can you share your code?

Hi,

We have created an internal issue for this. it will fix soon.

Showing 6061 to 6070 of 6692 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