aboutsummaryrefslogtreecommitdiffstats
path: root/src/server/IdentityServer/Config.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/IdentityServer/Config.cs')
-rw-r--r--src/server/IdentityServer/Config.cs7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/server/IdentityServer/Config.cs b/src/server/IdentityServer/Config.cs
index c005377..ac38aa4 100644
--- a/src/server/IdentityServer/Config.cs
+++ b/src/server/IdentityServer/Config.cs
@@ -18,20 +18,15 @@ namespace Dough.IdentityServer
ClientId = BrowserClientId,
AllowedGrantTypes = GrantTypes.Code,
RequireClientSecret = false,
-
RedirectUris = Constants.BrowserAppLoginRedirectUrls,
PostLogoutRedirectUris = Constants.BrowserAppLogoutRedirectUrls,
AllowedCorsOrigins = Constants.BrowserAppUrls,
AccessTokenType = AccessTokenType.Reference,
RequireConsent = false,
RefreshTokenExpiration = TokenExpiration.Sliding,
+ RefreshTokenUsage = TokenUsage.ReUse,
AlwaysSendClientClaims = true,
AllowOfflineAccess = true,
- Claims = new List<ClientClaim>
- {
- new ClientClaim()
- },
-
AllowedScopes =
{
IdentityServerConstants.StandardScopes.OpenId,