[fix] we don't expect this argument

This commit is contained in:
Laurent Peuch 2017-09-20 19:19:22 +02:00
parent dfcfbf472b
commit d4964421ec

View file

@ -205,7 +205,7 @@ post '/key/:public_key' do
end end
# Migrate a key from hmac-md5 to hmac-sha512 because it's 2017 # Migrate a key from hmac-md5 to hmac-sha512 because it's 2017
put '/migrate_key_to_sha512/:public_key' do put '/migrate_key_to_sha512/' do
# TODO check parameters # TODO check parameters
params[:public_key_md5] = Base64.decode64(params[:public_key_md5].encode('ascii-8bit')) params[:public_key_md5] = Base64.decode64(params[:public_key_md5].encode('ascii-8bit'))
params[:public_key_sha512] = Base64.decode64(params[:public_key_sha512].encode('ascii-8bit')) params[:public_key_sha512] = Base64.decode64(params[:public_key_sha512].encode('ascii-8bit'))