Skip to content

Commit

Permalink
fix too long line
Browse files Browse the repository at this point in the history
  • Loading branch information
Knerio committed Nov 24, 2024
1 parent d36840e commit e55461b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/code0/identities/provider/oidc.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ def user_details_url
end

def authorization_url
config[:authorization_url].gsub("{client_id}", config[:client_id]).gsub("{redirect_uri}", config[:redirect_uri])
config[:authorization_url]
.gsub("{client_id}", config[:client_id])
.gsub("{redirect_uri}", config[:redirect_uri])
end

def create_identity(response, *)
Expand Down

0 comments on commit e55461b

Please sign in to comment.