if the request is bad give it as a response
This commit is contained in:
parent
78253b6885
commit
b3cee70ead
1 changed files with 2 additions and 2 deletions
|
|
@ -20,8 +20,8 @@ class AuthorizationsController < ApplicationController
|
||||||
end
|
end
|
||||||
|
|
||||||
def token
|
def token
|
||||||
unless(params[:type] == 'client_associate' && params[:manifest_url])
|
if (!params[:type] == 'client_associate' || !params[:manifest_url])
|
||||||
render :text => "bad request", :status => 403
|
render :text => "bad request: #{params.inspect}", :status => 403
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
manifest = JSON.parse(RestClient.get(params[:manifest_url]).body)
|
manifest = JSON.parse(RestClient.get(params[:manifest_url]).body)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue