aboutsummaryrefslogtreecommitdiff
path: root/lib/pleroma/web/api_spec
diff options
context:
space:
mode:
authorlain <lain@soykaf.club>2020-07-09 13:09:31 +0000
committerlain <lain@soykaf.club>2020-07-09 13:09:31 +0000
commitf4469dc7419288a46512ea5cae6ffe32de5d47c2 (patch)
tree554899b657aee1e79ec50f58d989ee4089e2b657 /lib/pleroma/web/api_spec
parentbdc7b60610af7e1c9df7f01aa94c8992a3d6a516 (diff)
parent31fef95e35d3cbc2d65c76a57ba8f4047809ce1b (diff)
downloadpleroma-f4469dc7419288a46512ea5cae6ffe32de5d47c2.tar.gz
Merge branch 'features/favicons' into 'develop'
Add support for remote favicons See merge request pleroma/pleroma!2261
Diffstat (limited to 'lib/pleroma/web/api_spec')
-rw-r--r--lib/pleroma/web/api_spec/schemas/account.ex6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/pleroma/web/api_spec/schemas/account.ex b/lib/pleroma/web/api_spec/schemas/account.ex
index 84f18f1b6..e6f163cb7 100644
--- a/lib/pleroma/web/api_spec/schemas/account.ex
+++ b/lib/pleroma/web/api_spec/schemas/account.ex
@@ -102,6 +102,12 @@ defmodule Pleroma.Web.ApiSpec.Schemas.Account do
type: :object,
description:
"A generic map of settings for frontends. Opaque to the backend. Only returned in `verify_credentials` and `update_credentials`"
+ },
+ favicon: %Schema{
+ type: :string,
+ format: :uri,
+ nullable: true,
+ description: "Favicon image of the user's instance"
}
}
},