summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEgor Kislitsyn <egor@kislitsyn.com>2020-05-20 15:18:58 +0400
committerEgor Kislitsyn <egor@kislitsyn.com>2020-05-20 15:18:58 +0400
commit26f01744bcabf36aed01670254b3cc724758f7ca (patch)
tree9ebb0956997cc08dba0b60e127bbbe7515ba6faf
parent94ba5a780212920a1d4b303c3523f66ca0147a67 (diff)
Add `background_image` to `InstanceOperation`
-rw-r--r--lib/pleroma/web/api_spec/operations/instance_operation.ex7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/pleroma/web/api_spec/operations/instance_operation.ex b/lib/pleroma/web/api_spec/operations/instance_operation.ex
index 9d189d029..d5c335d0c 100644
--- a/lib/pleroma/web/api_spec/operations/instance_operation.ex
+++ b/lib/pleroma/web/api_spec/operations/instance_operation.ex
@@ -125,7 +125,12 @@ defmodule Pleroma.Web.ApiSpec.InstanceOperation do
},
avatar_upload_limit: %Schema{type: :integer, description: "The title of the website"},
background_upload_limit: %Schema{type: :integer, description: "The title of the website"},
- banner_upload_limit: %Schema{type: :integer, description: "The title of the website"}
+ banner_upload_limit: %Schema{type: :integer, description: "The title of the website"},
+ background_image: %Schema{
+ type: :string,
+ format: :uri,
+ description: "The background image for the website"
+ }
},
example: %{
"avatar_upload_limit" => 2_000_000,