From bf2a040cf9fb8e0eb3576732f3cda6fe6326e65d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matija=20=C4=8Cupi=C4=87?= Date: Thu, 25 Jan 2018 03:50:38 +0100 Subject: [PATCH] Pass validation errors in JSON endpoint --- app/controllers/groups/variables_controller.rb | 2 +- app/controllers/projects/variables_controller.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/controllers/groups/variables_controller.rb b/app/controllers/groups/variables_controller.rb index 5fbf532b98e..3a832a7c005 100644 --- a/app/controllers/groups/variables_controller.rb +++ b/app/controllers/groups/variables_controller.rb @@ -7,7 +7,7 @@ module Groups format.json do return head :ok if @group.update(variables_params) - head :bad_request + render status: :bad_request, json: @group.errors.to_hash end end end diff --git a/app/controllers/projects/variables_controller.rb b/app/controllers/projects/variables_controller.rb index 8bee1b97d14..9c0dad393c3 100644 --- a/app/controllers/projects/variables_controller.rb +++ b/app/controllers/projects/variables_controller.rb @@ -6,7 +6,7 @@ class Projects::VariablesController < Projects::ApplicationController format.json do return head :ok if @project.update(variables_params) - head :bad_request + render status: :bad_request, json: @project.errors.to_hash end end end