Merge branch 'openapi/nullable-request-fields' into 'develop'
[akkoma] / lib / pleroma / web / api_spec / helpers.ex
index 183df43eea9a03819753219ec33b31edac1b3a25..f0b558aa533aa25ff23aa199288fcefa40112c58 100644 (file)
@@ -54,4 +54,8 @@ defmodule Pleroma.Web.ApiSpec.Helpers do
   def empty_array_response do
     Operation.response("Empty array", "application/json", %Schema{type: :array, example: []})
   end
+
+  def no_content_response do
+    Operation.response("No Content", "application/json", %Schema{type: :string, example: ""})
+  end
 end