Skip to content

Commit

Permalink
Instantiate list properties
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewgunn committed Sep 28, 2018
1 parent 5f42a3a commit 53cd3a7
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ for:
only:
- master

version: 0.2.0
version: 0.2.1

deploy:
- provider: Environment
Expand All @@ -38,4 +38,4 @@ for:
except:
- master

version: 0.2.0.{build}-{branch}
version: 0.2.1.{build}-{branch}
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ public class ClientDocument
public int AccessTokenLifetime { get; set; } = 3600;
public AccessTokenType AccessTokenType { get; set; } = AccessTokenType.Jwt;
public bool AllowAccessTokensViaBrowser { get; set; }
public List<string> AllowedCorsOrigins { get; set; }
public List<string> AllowedGrantTypes { get; set; }
public List<string> AllowedScopes { get; set; }
public List<string> AllowedCorsOrigins { get; set; } = new List<string>();
public List<string> AllowedGrantTypes { get; set; } = new List<string>();
public List<string> AllowedScopes { get; set; } = new List<string>();
public bool AllowOfflineAccess { get; set; }
public bool AllowPlainTextPkce { get; set; }
public bool AllowRememberConsent { get; set; } = true;
Expand All @@ -22,27 +22,27 @@ public class ClientDocument
public int AuthorizationCodeLifetime { get; set; } = 300;
public bool BackChannelLogoutSessionRequired { get; set; } = true;
public string BackChannelLogoutUri { get; set; }
public List<ClientClaim> Claims { get; set; }
public List<ClientClaim> Claims { get; set; } = new List<ClientClaim>();
public string ClientClaimsPrefix { get; set; } = "client_";
public string ClientId { get; set; }
public string ClientName { get; set; }
public List<ClientSecret> ClientSecrets { get; set; }
public List<ClientSecret> ClientSecrets { get; set; } = new List<ClientSecret>();
public string ClientUri { get; set; }
public int? ConsentLifetime { get; set; } = null;
public bool Enabled { get; set; } = true;
public bool EnableLocalLogin { get; set; } = true;
public bool FrontChannelLogoutSessionRequired { get; set; } = true;
public string FrontChannelLogoutUri { get; set; }
public ObjectId Id { get; set; }
public List<string> IdentityProviderRestrictions { get; set; }
public List<string> IdentityProviderRestrictions { get; set; } = new List<string>();
public int IdentityTokenLifetime { get; set; } = 300;
public bool IncludeJwtId { get; set; }
public string LogoUri { get; set; }
public string PairWiseSubjectSalt { get; set; }
public List<string> PostLogoutRedirectUris { get; set; }
public List<ClientProperty> Properties { get; set; }
public List<string> PostLogoutRedirectUris { get; set; } = new List<string>();
public List<ClientProperty> Properties { get; set; } = new List<ClientProperty>();
public string ProtocolType { get; set; } = IdentityServerConstants.ProtocolTypes.OpenIdConnect;
public List<string> RedirectUris { get; set; }
public List<string> RedirectUris { get; set; } = new List<string>();
public TokenExpiration RefreshTokenExpiration { get; set; } = TokenExpiration.Absolute;
public TokenUsage RefreshTokenUsage { get; set; } = TokenUsage.OneTimeOnly;
public bool RequireClientSecret { get; set; } = true;
Expand Down

0 comments on commit 53cd3a7

Please sign in to comment.