Browse Source

Fix formatting

pull/2075/head
Tarun Jain 1 year ago
parent
commit
bb4307478c
1 changed files with 1 additions and 4 deletions
  1. +1
    -4
      src/Services/Basket/Basket.API/Program.cs

+ 1
- 4
src/Services/Basket/Basket.API/Program.cs View File

@ -41,10 +41,7 @@ builder.Services.AddSwaggerGen(options => {
Implicit = new OpenApiOAuthFlow() { Implicit = new OpenApiOAuthFlow() {
AuthorizationUrl = new Uri($"{builder.Configuration.GetValue<string>("IdentityUrlExternal")}/connect/authorize"), AuthorizationUrl = new Uri($"{builder.Configuration.GetValue<string>("IdentityUrlExternal")}/connect/authorize"),
TokenUrl = new Uri($"{builder.Configuration.GetValue<string>("IdentityUrlExternal")}/connect/token"), TokenUrl = new Uri($"{builder.Configuration.GetValue<string>("IdentityUrlExternal")}/connect/token"),
Scopes = new Dictionary<string, string>()
{
{ "basket", "Basket API" }
}
Scopes = new Dictionary<string, string>() { { "basket", "Basket API" } }
} }
} }
}); });


Loading…
Cancel
Save