Skip to content
Merged
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
5 changes: 2 additions & 3 deletions src/models/fetch_org_response.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ pub struct FetchOrgResponse {
pub is_saml_in_test_mode: bool,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub domain: Option<String>,
pub extra_domains: Vec<String>,
pub domain_autojoin: bool,
pub domain_restrict: bool,
}
Expand Down Expand Up @@ -70,6 +71,7 @@ impl FetchOrgResponse {
can_setup_saml,
is_saml_in_test_mode,
domain: None,
extra_domains: Vec::new(),
domain_autojoin,
domain_restrict,
}
Expand Down Expand Up @@ -110,6 +112,3 @@ impl crate::models::FetchOrgBasicResponse {
}
}
}



Loading