oidc_provider 0.6.0 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 96fc579002b69bf4274b426dc72fa5f17faa21b671ef2efda3a77da57ad87df7
|
4
|
+
data.tar.gz: 72d98a17ea78cd0d5f434065b0446e8a2912d8917e120e635b53d9ad0de63662
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c345282497779df9fd407de374ab3796d0a65e63e9d7de99f638fa4dee109866326d7e39ee4c52036c943ee834b9356d142aefd9ce06bb9c20f4f0af6ce2f549
|
7
|
+
data.tar.gz: 93d63b921a1202547009333afa209bc7a03a4ef43d3382c8cfdb2906e6d49d0f5c31bb23673a1b38f1625649b229023f9c4b6465c7c4ea6e317729ddc025673b
|
@@ -57,7 +57,7 @@ module OIDCProvider
|
|
57
57
|
# So we will forcibly sign out the user here and then redirect them so they
|
58
58
|
# don't get redirected back to the url that contains `prompt=login`
|
59
59
|
unauthenticate!
|
60
|
-
redirect_to url_for(request.query_parameters.except(:prompt))
|
60
|
+
redirect_to url_for(request.query_parameters.except(:prompt)), allow_other_host: true
|
61
61
|
end
|
62
62
|
end
|
63
63
|
end
|
@@ -5,7 +5,7 @@ module OIDCProvider
|
|
5
5
|
def destroy
|
6
6
|
unauthenticate!
|
7
7
|
redirect_to "/" unless OIDCProvider.after_sign_out_path
|
8
|
-
redirect_to OIDCProvider.after_sign_out_path.respond_to?(:call) ? OIDCProvider.after_sign_out_path.call(params) : OIDCProvider.after_sign_out_path
|
8
|
+
redirect_to (OIDCProvider.after_sign_out_path.respond_to?(:call) ? OIDCProvider.after_sign_out_path.call(params) : OIDCProvider.after_sign_out_path), allow_other_host: true
|
9
9
|
end
|
10
10
|
end
|
11
11
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: oidc_provider
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- William Carey
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-05-
|
11
|
+
date: 2025-05-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|