Browse Source

Resolved #812

pull/839/head
Yunus Emre Kalkan 8 years ago
parent
commit
e8e9e988b3
  1. 8
      modules/identityserver/src/Volo.Abp.IdentityServer.Domain.Shared/Volo/Abp/IdentityServer/Clients/ClientConsts.cs
  2. 4
      modules/identityserver/src/Volo.Abp.IdentityServer.Domain.Shared/Volo/Abp/IdentityServer/Clients/ClientPropertyConsts.cs
  3. 2
      modules/identityserver/src/Volo.Abp.IdentityServer.Domain.Shared/Volo/Abp/IdentityServer/Clients/ClientRedirectUriConsts.cs

8
modules/identityserver/src/Volo.Abp.IdentityServer.Domain.Shared/Volo/Abp/IdentityServer/Clients/ClientConsts.cs

@ -8,15 +8,15 @@
public const int ClientNameMaxLength = 200;
public const int ClientUriMaxLength = 2000;
public const int ClientUriMaxLength = 300;
public const int LogoUriMaxLength = 2000;
public const int LogoUriMaxLength = 300;
public const int DescriptionMaxLength = 1000;
public const int FrontChannelLogoutUriMaxLength = 2000;
public const int FrontChannelLogoutUriMaxLength = 300;
public const int BackChannelLogoutUriMaxLength = 2000;
public const int BackChannelLogoutUriMaxLength = 300;
public const int ClientClaimsPrefixMaxLength = 200;

4
modules/identityserver/src/Volo.Abp.IdentityServer.Domain.Shared/Volo/Abp/IdentityServer/Clients/ClientPropertyConsts.cs

@ -2,7 +2,7 @@
{
public class ClientPropertyConsts
{
public const int KeyMaxLength = 250;
public const int ValueMaxLength = 2000;
public const int KeyMaxLength = 64;
public const int ValueMaxLength = 128;
}
}

2
modules/identityserver/src/Volo.Abp.IdentityServer.Domain.Shared/Volo/Abp/IdentityServer/Clients/ClientRedirectUriConsts.cs

@ -2,6 +2,6 @@
{
public class ClientRedirectUriConsts
{
public const int RedirectUriMaxLength = 2000;
public const int RedirectUriMaxLength = 200;
}
}
Loading…
Cancel
Save