omniauth_oidc 0.2.2 → 0.2.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/README.md +4 -4
- data/lib/omniauth/oidc/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5c8e9e95eb8465a662ba0afb8523278c42147c53eb578352229e78ae4b325312
|
4
|
+
data.tar.gz: 48add3142f15a6a428d925359c908f01eabb52cf54aaee09ed4cf958fcba075a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1d63037d94b36b91ff143458a961676817c3ebe9a20a08dcb1a2252ac9a423fc6612dd5ef9968ebfeec1a8909b1643a53e212d0e38bb835313c82d8867361628
|
7
|
+
data.tar.gz: 6685d6045e34c7595a1cd21c6dfb91332ec07febafd7baae04a3ba58c1a7b25b345324f6d0bc44668ecec274bc502d3444e8eceae76afc53b42b2c1204aa035c
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -236,10 +236,10 @@ options. Here’s a sample setup:
|
|
236
236
|
Using these two configurations, you can ensure that when a user logs out from your application, they are also logged out
|
237
237
|
from the OIDC provider, providing a seamless logout across multiple services.
|
238
238
|
|
239
|
-
This works by calling `other_phase` on every request in your application
|
240
|
-
defined `logout_path`. If it does
|
241
|
-
`other_phase`
|
242
|
-
|
239
|
+
This works by calling `other_phase` on every controller request in your application. The method checks if the requested
|
240
|
+
URL matches the defined `logout_path`. If it does (i.e. current user has requested to log out from your application)
|
241
|
+
`other_phase` performs a redirect to the `end_session_endpoint` to terminate the user's session with the OIDC provider
|
242
|
+
and then it returns back to your application and concludes the request to end the current user's session.
|
243
243
|
|
244
244
|
For additional details please refer to the [OIDC specification](https://openid.net/specs/openid-connect-session-1_0-17.html#:~:text=%C2%A0TOC-,5.%C2%A0%20RP%2DInitiated%20Logout,-An%20RP%20can).
|
245
245
|
|