diff options
author | Alex Gleason <alex@alexgleason.me> | 2020-08-07 16:48:03 -0500 |
---|---|---|
committer | Alex Gleason <alex@alexgleason.me> | 2020-08-07 17:37:15 -0500 |
commit | 4af1b803811cbb59d41f0149706d6dda340b4755 (patch) | |
tree | 85705dc639c4b0c2680be6336d7441f79eced079 /lib/pleroma/web/api_spec/schemas | |
parent | 1a5a7ba6e8a936d3138ca530d3466111e542aef6 (diff) | |
download | pleroma-4af1b803811cbb59d41f0149706d6dda340b4755.tar.gz |
Clean up account aliases
Diffstat (limited to 'lib/pleroma/web/api_spec/schemas')
-rw-r--r-- | lib/pleroma/web/api_spec/schemas/account.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pleroma/web/api_spec/schemas/account.ex b/lib/pleroma/web/api_spec/schemas/account.ex index 4fd27edf5..cf743932c 100644 --- a/lib/pleroma/web/api_spec/schemas/account.ex +++ b/lib/pleroma/web/api_spec/schemas/account.ex @@ -41,7 +41,7 @@ defmodule Pleroma.Web.ApiSpec.Schemas.Account do type: :object, properties: %{ ap_id: %Schema{type: :string}, - ap_aliases: %Schema{type: :array, items: %Schema{type: :string}}, + also_known_as: %Schema{type: :array, items: %Schema{type: :string}}, allow_following_move: %Schema{ type: :boolean, description: "whether the user allows automatically follow moved following accounts" |