diff options
author | Winnie Hellmann <winnie@gitlab.com> | 2018-01-17 20:41:50 +0100 |
---|---|---|
committer | Winnie Hellmann <winnie@gitlab.com> | 2018-01-24 13:33:23 +0100 |
commit | ab39504aa7c1963169f04e750b7a458db9d1e5ab (patch) | |
tree | 931d99cafad7c4914ed6d6c606a2aac2859c3068 /lib/api/something.rb | |
parent | 4dc42845f2ceadcff76a99908220e61610c5b608 (diff) | |
download | gitlab-ce-winh-api-feature-failure.tar.gz |
Add dummy API delete endpoint with feature specwinh-api-feature-failure
Diffstat (limited to 'lib/api/something.rb')
-rw-r--r-- | lib/api/something.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/api/something.rb b/lib/api/something.rb new file mode 100644 index 00000000000..6cf9126c861 --- /dev/null +++ b/lib/api/something.rb @@ -0,0 +1,13 @@ +module API + class Something < Grape::API + resource :something do + desc 'Delete something' + params do + + end + delete do + status 204 + end + end + end +end |