Update Admin::Report according to Mastodon docs

Signed-off-by: mkljczk <git@mkljczk.pl>
This commit is contained in:
mkljczk 2025-03-17 17:06:08 +01:00
parent 56af52e4f4
commit 4dcd938543
2 changed files with 18 additions and 2 deletions

View file

@ -105,17 +105,31 @@ defmodule Pleroma.Web.ApiSpec.MastodonAdmin.ReportOperation do
defp report do
%Schema{
title: "Report",
title: "Admin::Report",
type: :object,
properties: %{
id: FlakeID,
action_taken: %Schema{type: :boolean},
category: %Schema{type: :string},
action_taken_at: %Schema{type: :string, format: "date-time", nullable: true},
category: %Schema{type: :string, enum: ["spam", "violation", "other"]},
comment: %Schema{type: :string, nullable: true},
forwarded: %Schema{type: :boolean, nullable: true},
created_at: %Schema{type: :string, format: "date-time"},
updated_at: %Schema{type: :string, format: "date-time"},
account: AccountOperation.account(),
target_account: AccountOperation.account(),
assigned_account: %Schema{
oneOf: [
AccountOperation.account(),
%Schema{type: :null}
]
},
action_taken_by_account: %Schema{
oneOf: [
AccountOperation.account(),
%Schema{type: :null}
]
},
statuses: %Schema{
type: :array,
items: Status

View file

@ -35,8 +35,10 @@ defmodule Pleroma.Web.MastodonAPI.Admin.ReportView do
%{
id: report.id,
action_taken: report.data["state"] != "open",
action_taken_at: nil,
category: "other",
comment: content,
forwarded: ni;,
created_at: created_at,
updated_at: created_at,
account: AccountView.render("show.json", %{user: account}),