You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1010 B
30 lines
1010 B
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.OpenApi.Models;
|
|
using System.Collections.Generic;
|
|
using Volo.Abp.Modularity;
|
|
|
|
namespace EShopOnAbp.Shared.Hosting.Gateways
|
|
{
|
|
public static class SwaggerWithAuthConfigurationHelper
|
|
{
|
|
public static void Configure(
|
|
ServiceConfigurationContext context,
|
|
string authority,
|
|
Dictionary<string, string> scopes,
|
|
string apiTitle,
|
|
string apiVersion = "v1",
|
|
string apiName = "v1"
|
|
)
|
|
{
|
|
context.Services.AddAbpSwaggerGenWithOAuth(
|
|
authority: authority,
|
|
scopes: scopes,
|
|
options =>
|
|
{
|
|
options.SwaggerDoc(apiName, new OpenApiInfo { Title = apiTitle, Version = apiVersion });
|
|
options.DocInclusionPredicate((docName, description) => true);
|
|
options.CustomSchemaIds(type => type.FullName);
|
|
});
|
|
}
|
|
}
|
|
}
|