Skip to content

Commit

Permalink
Fix - Le requireSecret n'est pas nécessaire
Browse files Browse the repository at this point in the history
  • Loading branch information
noelmugnier committed Nov 3, 2020
1 parent 39d110c commit 326914f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sheaft.Identity/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,7 @@ public void Configure(IApplicationBuilder app)
},
ClientName = manageName,
ClientUri = "https://manage.sheaft.com",
RequireClientSecret = true,
RequireClientSecret = false,
AllowAccessTokensViaBrowser = true,
RequirePkce = true,
AllowedCorsOrigins = new List<ClientCorsOrigin>() {
Expand Down Expand Up @@ -653,7 +653,7 @@ public void Configure(IApplicationBuilder app)
},
ClientName = jobName,
ClientUri = "https://jobs.sheaft.com",
RequireClientSecret = true,
RequireClientSecret = false,
AllowAccessTokensViaBrowser = true,
RequirePkce = true,
AllowedCorsOrigins = new List<ClientCorsOrigin>() {
Expand Down

0 comments on commit 326914f

Please sign in to comment.