💄 Optimized the authorized page style

This commit is contained in:
2025-07-10 02:28:27 +08:00
parent ed2961a5d5
commit 99c36ae548
5 changed files with 82 additions and 30 deletions

View File

@ -38,14 +38,14 @@ public class CustomApp : ModelBase, IIdentifiedResource
[NotMapped] public string ResourceIdentifier => "custom-app/" + Id;
}
public class CustomAppLinks : ModelBase
public class CustomAppLinks
{
[MaxLength(8192)] public string? HomePage { get; set; }
[MaxLength(8192)] public string? PrivacyPolicy { get; set; }
[MaxLength(8192)] public string? TermsOfService { get; set; }
}
public class CustomAppOauthConfig : ModelBase
public class CustomAppOauthConfig
{
[MaxLength(1024)] public string? ClientUri { get; set; }
[MaxLength(4096)] public string[] RedirectUris { get; set; } = [];