Base solution for your next web application
Starts in:
01 DAYS
01 HRS
01 MIN
01 SEC

Activities of "oguzhanagir"

Answer

Hi mdepouw

In ASP.NET Zero application, when you go to Maintenance page under Administration by default, there is a cache list under Caches. For more information, you can review the document here.

Output cache is not active by default in the application.

Answer

Hi

After removing the SwaggerDocumentFilter included under services.AddSwaggerGen, you need to add a new class as shown below.

Create a static class named SwaggerConfigExtensions.cs

using Microsoft.Extensions.DependencyInjection;
using Swashbuckle.AspNetCore.SwaggerGen;

namespace Intelly.Web.Swagger
{
    public static class SwaggerConfigExtensions
    {
        public static void AddSwaggerRouteFilter(this SwaggerGenOptions options)
        {
            options.DocInclusionPredicate((docName, apiDesc) =>
            {
                var routeTemplate = apiDesc.RelativePath;

                if (routeTemplate == "workflow-definitions")
                    return false;
                else if (routeTemplate.Contains("workflow-definitions/import-files"))
                    return false;
                else if (routeTemplate.Contains("workflow-instances"))
                    return false;
                else if (routeTemplate.Contains("workflow-registry"))
                    return false;
                else if (routeTemplate.Contains("workflows"))
                    return false;
                else if (routeTemplate.Contains("v{apiVersion}"))
                    return false;
                else if (routeTemplate.Contains("v{version}"))
                    return false;

                return true;
            });
        }
    }
}

After creating this class, change the DocInclusionPredicate method that was added before like this:

Before

//
options.DocInclusionPredicate((docName, description) => true);
//

After

//
options.AddSwaggerRouteFilter();
//

After making these changes, you will be able to access the Swagger UI screen without any problems.

Answer

Hi cyber50.ae

Your project has reached us, after performing the normal installation on the server side, the node modules packages have been installed on the Angular side. When we run the project, the problem you mentioned in the screenshot below does not occur. Here, I will ask you to perform the package installation again after deleting the node_modules file and the package lock files.

Hi nexgenvisibility

You can download the same project name again by clicking the Download Latest Version option under the Download button of the previous version of the project in the table under the Your recent downloads section under the Download page. And as a method, you can download a project without affecting the number of downloads by entering the same project name in the Download section and downloading it with a different technology or version.

Answer

Hi

Could you please send your project to [email protected] to reproduce the issue?

Before sending the project to us, can you create minify in the project with this command npm run create-dynamic-bundles as shown in this document? If the problem persists, you can send your project to us so that we can help you more easily.

Answer

Hi

Did you write the script and style files in angular.json under the Adding NPM Packages heading in the blog post?

And have you added this package to your project @elsa-workflows/elsa-workflows-studio?

Hi

You can update the SecurityStamp value of the data in the AbpUsers table with the UpdateSecurityStampAsync() method that comes with the UserManager class in the Microsoft.Extensions.Identity.Core package.

Answer

Hi

You need to write your Github username in this section. Email is not accepted.

Hi

We're glad you found the solution. Thanks for your feedback, keep up the good work

Answer

Hi

After logging in with the user who has the plan on the aspnetzero.com website, clicking the manage button under the Account button, you can give permission to the github user you are trying to log in from the Github Members tab on the relevant page.

Showing 111 to 120 of 166 entries