diff options
author | lain <lain@soykaf.club> | 2021-01-05 13:33:57 +0100 |
---|---|---|
committer | lain <lain@soykaf.club> | 2021-01-05 13:33:57 +0100 |
commit | fee0c6a2cb058282ee6c3960730201f58b691270 (patch) | |
tree | 9a5e0057d20651fbde1fe8180cabf7744a3a26ca /lib/pleroma/web/api_spec/operations/account_operation.ex | |
parent | 7b44605cb89943a905f6a0a7aab9ebeea58aa7ab (diff) | |
parent | 7a03b112f2ae0acbb546975a3cb57f63ab69708d (diff) | |
download | pleroma-fee0c6a2cb058282ee6c3960730201f58b691270.tar.gz |
Merge branch 'develop' of git.pleroma.social:pleroma/pleroma into alexgleason/pleroma-confirm-users
Diffstat (limited to 'lib/pleroma/web/api_spec/operations/account_operation.ex')
-rw-r--r-- | lib/pleroma/web/api_spec/operations/account_operation.ex | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/pleroma/web/api_spec/operations/account_operation.ex b/lib/pleroma/web/api_spec/operations/account_operation.ex index 280100c3d..bd3a73c11 100644 --- a/lib/pleroma/web/api_spec/operations/account_operation.ex +++ b/lib/pleroma/web/api_spec/operations/account_operation.ex @@ -614,6 +614,12 @@ defmodule Pleroma.Web.ApiSpec.AccountOperation do nullable: true, description: "Allows automatically follow moved following accounts" }, + also_known_as: %Schema{ + type: :array, + items: %Schema{type: :string}, + nullable: true, + description: "List of alternate ActivityPub IDs" + }, pleroma_background_image: %Schema{ type: :string, nullable: true, @@ -644,6 +650,7 @@ defmodule Pleroma.Web.ApiSpec.AccountOperation do pleroma_settings_store: %{"pleroma-fe" => %{"key" => "val"}}, skip_thread_containment: false, allow_following_move: false, + also_known_as: ["https://foo.bar/users/foo"], discoverable: false, actor_type: "Person" } |