-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for tenant
session_cookie
property (#88)
* Adding session cookie configuration to tenant * Adding comment * Adding tests * Commenting exported struct * Adding period Co-authored-by: Will Vedder <[email protected]>
- Loading branch information
Showing
5 changed files
with
60 additions
and
3 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,7 @@ interactions: | |
duration: 1ms | ||
- request: | ||
body: | | ||
{"friendly_name":"My Example Tenant","support_email":"[email protected]","support_url":"https://support.example.com","session_lifetime":1080,"idle_session_lifetime":720,"default_redirection_uri":"https://example.com/login"} | ||
{"friendly_name":"My Example Tenant","support_email":"[email protected]","support_url":"https://support.example.com","session_lifetime":1080,"idle_session_lifetime":720,"default_redirection_uri":"https://example.com/login","session_cookie":{"mode":"non-persistent"}} | ||
form: {} | ||
headers: | ||
Content-Type: | ||
|
@@ -38,7 +38,7 @@ interactions: | |
body: '{"allowed_logout_urls":["https://mycompany.org/logoutCallback"],"change_password":{"enabled":true,"html":"<html>Change | ||
Password</html>"},"default_redirection_uri":"https://example.com/login","enabled_locales":["de","fr"],"error_page":{"html":"<html>Error | ||
Page</html>","url":"https://mycompany.org/error","show_log_link":false},"flags":{"allow_changing_enable_sso":false,"cannot_change_enforce_client_authentication_on_passwordless_start":true,"change_pwd_flow_v1":false,"disable_impersonation":true,"enable_apis_section":false,"enable_client_connections":true,"enable_custom_domain_in_emails":false,"enable_dynamic_client_registration":false,"enable_legacy_logs_search_v2":false,"enable_public_signup_user_exists_error":true,"enable_sso":true,"enforce_client_authentication_on_passwordless_start":true,"new_universal_login_experience_enabled":false,"universal_login":false,"use_scope_descriptions_for_consent":false,"revoke_refresh_token_grant":false,"disable_clickjack_protection_headers":false,"enable_pipeline2":false},"friendly_name":"My | ||
Example Tenant","guardian_mfa_page":{"enabled":true,"html":"<html>MFA</html>"},"idle_session_lifetime":720,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"12","session_lifetime":1080,"support_email":"[email protected]","support_url":"https://support.example.com","universal_login":{"colors":{"primary":"#ea5323","page_background":{"type":"linear-gradient","start":"#000000","end":"#ffffff","angle_deg":35}}}}' | ||
Example Tenant","guardian_mfa_page":{"enabled":true,"html":"<html>MFA</html>"},"idle_session_lifetime":720,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"12","session_cookie":{"mode":"non-persistent"},"session_lifetime":1080,"support_email":"[email protected]","support_url":"https://support.example.com","universal_login":{"colors":{"primary":"#ea5323","page_background":{"type":"linear-gradient","start":"#000000","end":"#ffffff","angle_deg":35}}}}' | ||
headers: | ||
Content-Type: | ||
- application/json; charset=utf-8 | ||
|
@@ -60,7 +60,7 @@ interactions: | |
body: '{"allowed_logout_urls":["https://mycompany.org/logoutCallback"],"change_password":{"enabled":true,"html":"<html>Change | ||
Password</html>"},"default_redirection_uri":"https://example.com/login","enabled_locales":["de","fr"],"error_page":{"html":"<html>Error | ||
Page</html>","url":"https://mycompany.org/error","show_log_link":false},"flags":{"allow_changing_enable_sso":false,"change_pwd_flow_v1":false,"disable_impersonation":true,"enable_apis_section":false,"enable_client_connections":true,"enable_custom_domain_in_emails":false,"enable_dynamic_client_registration":false,"enable_legacy_logs_search_v2":false,"enable_public_signup_user_exists_error":true,"enable_sso":true,"new_universal_login_experience_enabled":false,"universal_login":false,"use_scope_descriptions_for_consent":false,"revoke_refresh_token_grant":false,"disable_clickjack_protection_headers":false,"enable_pipeline2":false},"friendly_name":"My | ||
Example Tenant","guardian_mfa_page":{"enabled":true,"html":"<html>MFA</html>"},"idle_session_lifetime":720,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"12","session_lifetime":1080,"support_email":"[email protected]","support_url":"https://support.example.com","universal_login":{"colors":{"primary":"#ea5323","page_background":{"type":"linear-gradient","start":"#000000","end":"#ffffff","angle_deg":35}}},"sandbox_versions_available":["12"]}' | ||
Example Tenant","guardian_mfa_page":{"enabled":true,"html":"<html>MFA</html>"},"idle_session_lifetime":720,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"12","session_cookie":{"mode":"non-persistent"},"session_lifetime":1080,"support_email":"[email protected]","support_url":"https://support.example.com","universal_login":{"colors":{"primary":"#ea5323","page_background":{"type":"linear-gradient","start":"#000000","end":"#ffffff","angle_deg":35}}},"sandbox_versions_available":["12"]}' | ||
headers: | ||
Content-Type: | ||
- application/json; charset=utf-8 | ||
|