Skip to content

Commit

Permalink
Add cross_origin_authentication on Clients (#643)
Browse files Browse the repository at this point in the history
  • Loading branch information
frederikprijck authored Aug 14, 2023
1 parent 476244c commit 6923610
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/Auth0.ManagementApi/Models/ClientBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,12 @@ public abstract class ClientBase
[JsonProperty("organization_require_behavior")]
[JsonConverter(typeof(StringEnumConverter))]
public OrganizationRequireBehavior? OrganizationRequireBehavior { get; set; }

/// <summary>
/// Whether this client can be used to make cross-origin authentication requests (true) or it is not allowed to make such requests (false).
/// </summary>
[JsonProperty("cross_origin_authentication")]
public bool? CrossOriginAuthentication { get; set; }
}

}
Expand Down

0 comments on commit 6923610

Please sign in to comment.