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

Return all variables after UPDATE

parent 9eb3bb5c
......@@ -16,7 +16,12 @@ module Groups
def update
respond_to do |format|
format.json do
return head :ok if @group.update(variables_params)
if @group.update(variables_params)
variables = @group.variables
.map { |variable| variable.present(current_user: current_user) }
return render status: :ok, json: { variables: variables }
end
render status: :bad_request, json: @group.errors.full_messages
end
......
......@@ -15,7 +15,12 @@ class Projects::VariablesController < Projects::ApplicationController
def update
respond_to do |format|
format.json do
return head :ok if @project.update(variables_params)
if @project.update(variables_params)
variables = @project.variables
.map { |variable| variable.present(current_user: current_user) }
return render status: :ok, json: { variables: variables }
end
render status: :bad_request, json: @project.errors.full_messages
end
......
......@@ -78,6 +78,12 @@ describe Groups::VariablesController do
expect(response).to have_gitlab_http_status(:ok)
end
it 'has all variables in response' do
subject
expect(response.body).to include(group.variables.reload.to_json)
end
end
context 'with a deleted variable' do
......@@ -101,6 +107,12 @@ describe Groups::VariablesController do
expect(response).to have_gitlab_http_status(:ok)
end
it 'has all variables in response' do
subject
expect(response.body).to include(group.variables.reload.to_json)
end
end
end
end
......@@ -87,6 +87,12 @@ describe Projects::VariablesController do
expect(response).to have_gitlab_http_status(:ok)
end
it 'has all variables in response' do
subject
expect(response.body).to include(project.variables.reload.to_json)
end
end
context 'with a deleted variable' do
......@@ -110,6 +116,12 @@ describe Projects::VariablesController do
expect(response).to have_gitlab_http_status(:ok)
end
it 'has all variables in response' do
subject
expect(response.body).to include(project.variables.reload.to_json)
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