Add `background_image` to `InstanceOperation`

This commit is contained in:
Egor Kislitsyn 2020-05-20 15:18:58 +04:00
parent 94ba5a7802
commit 26f01744bc
No known key found for this signature in database
GPG Key ID: 1B49CB15B71E7805
1 changed files with 6 additions and 1 deletions

View File

@ -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,