Bladeren bron

Merge branch 'fix/openapi-relationship-nullable' into 'develop'

Account schema: specify that pleroma.relationship is nullable

See merge request pleroma/pleroma!3299
youtube-fix
rinpatch 3 jaren geleden
bovenliggende
commit
a7864a9429
3 gewijzigde bestanden met toevoegingen van 3 en 3 verwijderingen
  1. +1
    -1
      lib/pleroma/web/api_spec/helpers.ex
  2. +1
    -1
      lib/pleroma/web/api_spec/schemas/account.ex
  3. +1
    -1
      lib/pleroma/web/api_spec/schemas/account_relationship.ex

+ 1
- 1
lib/pleroma/web/api_spec/helpers.ex Bestand weergeven

@@ -63,7 +63,7 @@ defmodule Pleroma.Web.ApiSpec.Helpers do
:with_relationships,
:query,
BooleanLike,
"Embed relationships into accounts."
"Embed relationships into accounts. **If this parameter is not set account's `pleroma.relationship` is going to be `null`.**"
)
end



+ 1
- 1
lib/pleroma/web/api_spec/schemas/account.ex Bestand weergeven

@@ -96,7 +96,7 @@ defmodule Pleroma.Web.ApiSpec.Schemas.Account do
hide_notification_contents: %Schema{type: :boolean}
}
},
relationship: AccountRelationship,
relationship: %Schema{allOf: [AccountRelationship], nullable: true},
settings_store: %Schema{
type: :object,
description:


+ 1
- 1
lib/pleroma/web/api_spec/schemas/account_relationship.ex Bestand weergeven

@@ -10,7 +10,7 @@ defmodule Pleroma.Web.ApiSpec.Schemas.AccountRelationship do

OpenApiSpex.schema(%{
title: "AccountRelationship",
description: "Response schema for relationship",
description: "Relationship between current account and requested account",
type: :object,
properties: %{
blocked_by: %Schema{type: :boolean},


Laden…
Annuleren
Opslaan