Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Schilling <rschilling@student.tugraz.at>2017-02-27 19:02:25 +0300
committerRobert Schilling <rschilling@student.tugraz.at>2017-02-28 10:32:40 +0300
commit2b8005ae41e7bd29010d54fe8a2c03c7e58b5c66 (patch)
tree5c5c577d88e2657592b2328299641040cd67e931 /lib/api/runner.rb
parent7d60876bc9c95323be185033f7f86b548fdf4728 (diff)
New runner API returns 204
Diffstat (limited to 'lib/api/runner.rb')
-rw-r--r--lib/api/runner.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/api/runner.rb b/lib/api/runner.rb
index 804b27d40a7..47858f1866b 100644
--- a/lib/api/runner.rb
+++ b/lib/api/runner.rb
@@ -38,7 +38,7 @@ module API
end
desc 'Deletes a registered Runner' do
- http_codes [[200, 'Runner was deleted'], [403, 'Forbidden']]
+ http_codes [[204, 'Runner was deleted'], [403, 'Forbidden']]
end
params do
requires :token, type: String, desc: %q(Runner's authentication token)