Commit 4fde19a2 authored by syasonik's avatar syasonik

Try to reduce complexity again

parent 5f6e20c8
...@@ -164,16 +164,10 @@ class Projects::EnvironmentsController < Projects::ApplicationController ...@@ -164,16 +164,10 @@ class Projects::EnvironmentsController < Projects::ApplicationController
format.json do format.json do
result = Gitlab::MetricsDashboard::Service.new(@project, @current_user, environment: environment).get_dashboard result = Gitlab::MetricsDashboard::Service.new(@project, @current_user, environment: environment).get_dashboard
if result[:status] == :success ok_status = :ok if result[:status] == :success
status_code = :ok status = ok_status || result[:http_status] || :bad_request
details = { dashboard: result[:dashboard] }
else render status: status, json: result
status_code = result[:http_status] || :bad_request
details = { message: result[:message] }
end
render status: status_code,
json: { status: result[:status] }.merge(details)
end end
end end
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment