Skip to content

Commit e55461b

Browse files
committed
fix too long line
1 parent d36840e commit e55461b

File tree

1 file changed

+3
-1
lines changed
  • lib/code0/identities/provider

1 file changed

+3
-1
lines changed

lib/code0/identities/provider/oidc.rb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ def user_details_url
2121
end
2222

2323
def authorization_url
24-
config[:authorization_url].gsub("{client_id}", config[:client_id]).gsub("{redirect_uri}", config[:redirect_uri])
24+
config[:authorization_url]
25+
.gsub("{client_id}", config[:client_id])
26+
.gsub("{redirect_uri}", config[:redirect_uri])
2527
end
2628

2729
def create_identity(response, *)

0 commit comments

Comments
 (0)