You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+37
Original file line number
Diff line number
Diff line change
@@ -86,6 +86,14 @@ The service provider metadata used to ease configuration of the SAML SP in the I
86
86
*`:idp_sso_target_url` - The URL to which the authentication request should be sent.
87
87
This would be on the identity provider. **Required**.
88
88
89
+
*`:idp_slo_target_url` - The URL to which the single logout request and response should
90
+
be sent. This would be on the identity provider. Optional.
91
+
92
+
*`:slo_default_relay_state` - The value to use as default `RelayState` for single log outs. The
93
+
value can be a string, or a `Proc` (or other object responding to `call`). The `request`
94
+
instance will be passed to this callable if it has an arity of 1. If the value is a string,
95
+
the string will be returned, when the `RelayState` is called. Optional.
96
+
89
97
*`:idp_sso_target_url_runtime_params` - A dynamic mapping of request params that exist
90
98
during the request phase of OmniAuth that should to be sent to the IdP after a specific
91
99
mapping. So for example, a param `original_request_param` with value `original_param_value`,
@@ -145,6 +153,35 @@ end
145
153
146
154
Then follow Devise's general [OmniAuth tutorial](https://github.com/plataformatec/devise/wiki/OmniAuth:-Overview), replacing references to `facebook` with `saml`.
147
155
156
+
## Single Logout
157
+
158
+
Single Logout can be Service Provider initiated or Identity Provider initiated.
159
+
When using Devise as an authentication solution, the SP initiated flow can be integrated
160
+
in the `SessionsController#destroy` action.
161
+
162
+
For this to work it is important to preserve the `saml_uid` value before Devise
163
+
clears the session and redirect to the `/spslo` sub-path to initiate the single logout.
164
+
165
+
Example `destroy` action in `sessions_controller.rb`:
Authored by [Rajiv Aaron Manglani](http://www.rajivmanglani.com/), Raecoo Cao, Todd W Saxton, Ryan Wilcox, Steven Anderson, Nikos Dimitrakopoulos, Rudolf Vriend and [Bruno Pedro](http://brunopedro.com/).
0 commit comments