summaryrefslogtreecommitdiff
path: root/app/controllers/groups
diff options
context:
space:
mode:
authorMatija Čupić <matteeyah@gmail.com>2018-01-25 12:59:52 +0100
committerMatija Čupić <matteeyah@gmail.com>2018-02-05 18:58:18 +0100
commit6b82a9ef51f59d37975bd5de48142d1a0a8504de (patch)
treed69f9767fce454d67d736eaad6985fd0d1b1460f /app/controllers/groups
parentbf2a040cf9fb8e0eb3576732f3cda6fe6326e65d (diff)
downloadgitlab-ce-6b82a9ef51f59d37975bd5de48142d1a0a8504de.tar.gz
Format validation errors as human readable messages
Diffstat (limited to 'app/controllers/groups')
-rw-r--r--app/controllers/groups/variables_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/groups/variables_controller.rb b/app/controllers/groups/variables_controller.rb
index 3a832a7c005..2f7058e95ea 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)
- render status: :bad_request, json: @group.errors.to_hash
+ render status: :bad_request, json: @group.errors.full_messages
end
end
end