Still working on getting client credential flow complete, most of the request works but still working on generating the JWT.
This commit is contained in:
parent
1a8c63808a
commit
8782ef39c6
80 changed files with 1331 additions and 414 deletions
|
|
@ -19,8 +19,16 @@ public class Client
|
|||
public string? Description { get; set; }
|
||||
|
||||
[MaxLength(20)]
|
||||
public string? SignatureAlgorithm { get; set; }
|
||||
public JwtSigAlgName? SignatureAlgorithm { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Enables confidential flows
|
||||
/// </summary>
|
||||
public bool Confidential { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Enables the client credentials flow which required Confidential to be true too.
|
||||
/// </summary>
|
||||
public bool AllowClientCredentialsFlow { get; set; } = false;
|
||||
|
||||
public required DateTime CreatedAt { get; set; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue