Add `account_activation_required` to /api/v1/instance
[akkoma] / lib / pleroma / web / api_spec / helpers.ex
index 859e45b57ed67fc2069e82788e863f230ebbd4c8..a9cfe0fedf89230c6c6f6aff299eeeacceee08cf 100644 (file)
@@ -49,7 +49,12 @@ defmodule Pleroma.Web.ApiSpec.Helpers do
   end
 
   def with_relationships_param do
-    Operation.parameter(:with_relationships, :query, BooleanLike, "Include relationships")
+    Operation.parameter(
+      :with_relationships,
+      :query,
+      BooleanLike,
+      "Embed relationships into accounts."
+    )
   end
 
   def empty_object_response do
@@ -59,4 +64,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