Commit efcdc269 authored by Matija Čupić's avatar Matija Čupić

Fix static_analysis failure

parent d05cc9c6
......@@ -11,20 +11,28 @@ module Groups
end
def update
if @group.update(variables_params)
if @group.update(group_variables_params)
respond_to do |format|
format.json { return render status: :ok, json: { variables: GroupVariableSerializer.new.represent(@group.variables) } }
format.json { return render_group_variables }
end
else
respond_to do |format|
format.json { render status: :bad_request, json: @group.errors.full_messages }
format.json { render_error }
end
end
end
private
def variables_params
def render_group_variables
render status: :ok, json: { variables: GroupVariableSerializer.new.represent(@group.variables) }
end
def render_error
render status: :bad_request, json: @group.errors.full_messages
end
def group_variables_params
params.permit(variables_attributes: [*variable_params_attributes])
end
......
......@@ -12,17 +12,25 @@ class Projects::VariablesController < Projects::ApplicationController
def update
if @project.update(variables_params)
respond_to do |format|
format.json { return render status: :ok, json: { variables: VariableSerializer.new.represent(@project.variables) } }
format.json { return render_variables }
end
else
respond_to do |format|
format.json { render status: :bad_request, json: @project.errors.full_messages }
format.json { render_error }
end
end
end
private
def render_variables
render status: :ok, json: { variables: VariableSerializer.new.represent(@project.variables) }
end
def render_error
render status: :bad_request, json: @project.errors.full_messages
end
def variables_params
params.permit(variables_attributes: [*variable_params_attributes])
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