X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/5444af981c8c3161ed7991d0fb0fd7463175fc7e..3cfffc2258621558e1147ceaf63980a7f6ed414b:/app/controllers/api/traces_controller.rb diff --git a/app/controllers/api/traces_controller.rb b/app/controllers/api/traces_controller.rb index 86f1370f6..8979704a7 100644 --- a/app/controllers/api/traces_controller.rb +++ b/app/controllers/api/traces_controller.rb @@ -16,13 +16,9 @@ module Api around_action :api_call_handle_error def show - trace = Trace.visible.find(params[:id]) + @trace = Trace.visible.find(params[:id]) - if trace.public? || trace.user == current_user - render :xml => trace.to_xml.to_s - else - head :forbidden - end + head :forbidden unless @trace.public? || @trace.user == current_user end def update