mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2025-04-04 17:49:36 +00:00
Update Admin::Report according to Mastodon docs
Signed-off-by: mkljczk <git@mkljczk.pl>
This commit is contained in:
parent
56af52e4f4
commit
4dcd938543
2 changed files with 18 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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}),
|
||||
|
|
Loading…
Reference in a new issue