Skip to content

Commit

Permalink
LTI-361: fix keyseturl using id instead of token in dynamic registration
Browse files Browse the repository at this point in the history
  • Loading branch information
jfederico committed Apr 25, 2024
1 parent 918c222 commit 603e4af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/controllers/registration_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def process_registration_initiation_request
# 3.5.2 Client Registration Request
key_pair = new_rsa_keypair
header = client_registration_request_header(params[:registration_token])
body = client_registration_request_body(key_pair.id)
body = client_registration_request_body(key_pair.token)
body = body.to_json

http = Net::HTTP.new(uri.host, uri.port)
Expand Down

0 comments on commit 603e4af

Please sign in to comment.