Skip to content

Commit dbbb8d1

Browse files
committed
Allows force_signup param to be passed to identity provider
1 parent 1353618 commit dbbb8d1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/omniauth-rpi/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module OmniAuth
22
module Rpi
3-
VERSION = '0.7.0'.freeze
3+
VERSION = '0.8.0'.freeze
44
end
55
end

lib/omniauth/strategies/hydra0.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class Hydra0 < OmniAuth::Strategies::OAuth2
1010

1111
def authorize_params
1212
super.tap do |params|
13-
%w[scope client_options].each do |v|
13+
%w[scope client_options force_signup].each do |v|
1414
params[v.to_sym] = request.params[v] if request.params[v]
1515
end
1616
end

lib/omniauth/strategies/hydra1.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class Hydra1 < OmniAuth::Strategies::OAuth2
1010

1111
def authorize_params
1212
super.tap do |params|
13-
%w[scope client_options].each do |v|
13+
%w[scope client_options force_signup].each do |v|
1414
params[v.to_sym] = request.params[v] if request.params[v]
1515
end
1616
end

0 commit comments

Comments
 (0)