diff options
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 |