Skip to content

Commit

Permalink
Merge pull request #3 from eVisit/update_ruby_31
Browse files Browse the repository at this point in the history
Update ruby 31
  • Loading branch information
hernan authored Nov 13, 2023
2 parents 963f628 + 634041e commit 0c6f212
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.DS_Store
.idea
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,8 @@ def policy_default_client_options
}
end

def policy_initialize_client(redirect_uri:, **override_options)
options = default_client_options.merge(override_options)
options[:redirect_uri] = redirect_uri
def policy_initialize_client(policy_options = {})
options = default_client_options.merge(policy_options || {})
Client.new(options)
end

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module OmniAuth
module Strategies
class AzureActiveDirectoryB2C

VERSION = '0.2.2'
VERSION = '0.2.3'

end
end
Expand Down

0 comments on commit 0c6f212

Please sign in to comment.