Add specs for AccountController.mute and AccountController.unmute
[akkoma] / lib / pleroma / web / api_spec / schemas / account_relationship.ex
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.Web.ApiSpec.Schemas.AccountRelationship do
6 alias OpenApiSpex.Schema
7
8 require OpenApiSpex
9
10 OpenApiSpex.schema(%{
11 title: "AccountRelationship",
12 description: "Response schema for relationship",
13 type: :object,
14 properties: %{
15 blocked_by: %Schema{type: :boolean},
16 blocking: %Schema{type: :boolean},
17 domain_blocking: %Schema{type: :boolean},
18 endorsed: %Schema{type: :boolean},
19 followed_by: %Schema{type: :boolean},
20 following: %Schema{type: :boolean},
21 id: %Schema{type: :string},
22 muting: %Schema{type: :boolean},
23 muting_notifications: %Schema{type: :boolean},
24 requested: %Schema{type: :boolean},
25 showing_reblogs: %Schema{type: :boolean},
26 subscribing: %Schema{type: :boolean}
27 },
28 example: %{
29 "JSON" => %{
30 "blocked_by" => false,
31 "blocking" => false,
32 "domain_blocking" => false,
33 "endorsed" => false,
34 "followed_by" => false,
35 "following" => false,
36 "id" => "9tKi3esbG7OQgZ2920",
37 "muting" => false,
38 "muting_notifications" => false,
39 "requested" => false,
40 "showing_reblogs" => true,
41 "subscribing" => false
42 }
43 }
44 })
45 end