Allow multiple redirect urls

This commit is contained in:
Silvino Escalona 2020-12-01 12:35:29 -04:00
parent 7d2667ebb2
commit 2dbefdbfb8

View file

@ -1,4 +1,6 @@
using System.Collections.Generic; using System;
using System.Collections.Generic;
using System.Linq;
using IdentityServer4; using IdentityServer4;
using IdentityServer4.Models; using IdentityServer4.Models;
@ -20,7 +22,7 @@ namespace SteamOpenIdConnectProvider
}, },
// where to redirect to after login // where to redirect to after login
RedirectUris = { redirectUri }, RedirectUris = redirectUri.Split(",").Select(x => x.Trim()).ToArray(),
// where to redirect to after logout // where to redirect to after logout
PostLogoutRedirectUris = { logoutRedirectUri }, PostLogoutRedirectUris = { logoutRedirectUri },