We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5136e7d + cdca4e1 commit 0e4048dCopy full SHA for 0e4048d
CHANGELOG.md
@@ -1,3 +1,7 @@
1
+# v 0.6.0
2
+
3
+* Add support for access_type per request using url parameter
4
5
# v 0.5.0
6
7
* Add support for new params: access_type, approval_prompt, state.
lib/ueberauth/strategy/google.ex
@@ -20,6 +20,7 @@ defmodule Ueberauth.Strategy.Google do
20
|> with_optional(:hd, conn)
21
|> with_optional(:approval_prompt, conn)
22
|> with_optional(:access_type, conn)
23
+ |> with_param(:access_type, conn)
24
|> with_param(:prompt, conn)
25
|> with_param(:state, conn)
26
|> Keyword.put(:redirect_uri, callback_url(conn))
0 commit comments