Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added missing self-service SSO request parameters #772

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,17 @@ public class EnabledOrganization
/// </summary>
[JsonProperty("organization_id")]
public string OrganizationId { get; set; }

/// <summary>
/// Whether or not users that login will automatically be granted membership to the organization.
/// </summary>
[JsonProperty("assign_membership_on_login")]
public bool AssignMembershipOnLogin { get; set; }

/// <summary>
/// Determines whether a connection should be displayed on this organization�s login prompt.
/// </summary>
[JsonProperty("show_as_button")]
public bool ShowAsButton { get; set; }
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,23 @@ public class SelfServiceSsoConnectionConfig
/// </summary>
[JsonProperty("name")]
public string Name { get; set; }

/// <summary>
/// Display name of the connection that will be created as part of the SSO flow.
/// </summary>
[JsonProperty("display_name")]
public string DisplayName { get; set; }

/// <summary>
/// Flag indicating if this is a domain connection
/// </summary>
[JsonProperty("is_domain_connection")]
public bool IsDomainConnection { get; set; }

/// <summary>
/// Flag indicating if the connection should be displayed as a button.
/// </summary>
[JsonProperty("show_as_button")]
public bool ShowAsButton { get; set; }
}
}