omniauth-mastodon-st 0.9.6 → 0.9.7
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 +4 -4
- data/lib/omniauth/mastodon/version.rb +1 -1
- data/lib/omniauth/strategies/mastodon.rb +6 -2
- 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: c278bceb7fe8ef155caa37fc482af11b62b3245124621163856de6be5384f52a
|
4
|
+
data.tar.gz: febd54f402679648c40bdfbf91b98a5ef8520fdc922bd6f2ed527d87028b772b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 917530397b92818fccf63a796dac5fbbe933da47b907b402cc60f1a103bb65fde93bad78dd4b71882145bd5320b63588c76e224899bcecf3eb2a71f35ff822a6
|
7
|
+
data.tar.gz: 8efe0fcc741a526d7b174f5788cb316fb2f5da9e4fe76834acd121b6970a6e193fefe99434f6e44ddc6a08b34ddbb7953a25aa01034fb30b5147937f30af380a
|
@@ -35,15 +35,19 @@ module OmniAuth
|
|
35
35
|
# Before we can redirect the user to authorize access, we must know where the user is from
|
36
36
|
# If the identifier param is not already present, a form will be shown for entering it
|
37
37
|
def request_phase
|
38
|
-
identifier ? start_oauth : get_identifier
|
39
38
|
puts "++++++++++request_phase"
|
40
39
|
puts identifier
|
40
|
+
puts options[:domain]
|
41
|
+
puts options[:client_id]
|
42
|
+
puts options[:client_secret]
|
43
|
+
puts "++++++++++request_phase"
|
44
|
+
identifier ? start_oauth : get_identifier
|
41
45
|
end
|
42
46
|
|
43
47
|
def callback_phase
|
44
|
-
set_options_from_identifier
|
45
48
|
puts "++++++++++callback_phase"
|
46
49
|
puts identifier
|
50
|
+
set_options_from_identifier
|
47
51
|
super
|
48
52
|
end
|
49
53
|
|