Browse Source

Fix issue #80 logging out crashes.

pull/89/head
dsanz 8 years ago
parent
commit
1b6ff6cb20
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/Services/Identity/Identity.API/Configuration/Config.cs

+ 2
- 2
src/Services/Identity/Identity.API/Configuration/Config.cs View File

@ -91,8 +91,8 @@ namespace Identity.API.Configuration
}, },
PostLogoutRedirectUris = new List<string> PostLogoutRedirectUris = new List<string>
{ {
$"{clientsUrl["Mvc"]}/",
"http://localhost:5100/"
$"{clientsUrl["Mvc"]}/signout-callback-oidc",
"http://localhost:5100/signout-callback-oidc"
}, },
AllowedScopes = new List<string> AllowedScopes = new List<string>
{ {


Loading…
Cancel
Save