diff --git a/lib/pleroma/web/api_spec/operations/mastodon_admin/report_operation.ex b/lib/pleroma/web/api_spec/operations/mastodon_admin/report_operation.ex index a75b5bf56..274ce3bd9 100644 --- a/lib/pleroma/web/api_spec/operations/mastodon_admin/report_operation.ex +++ b/lib/pleroma/web/api_spec/operations/mastodon_admin/report_operation.ex @@ -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 diff --git a/lib/pleroma/web/mastodon_api/admin/views/report_view.ex b/lib/pleroma/web/mastodon_api/admin/views/report_view.ex index b966bc0c7..a0c3d06e9 100644 --- a/lib/pleroma/web/mastodon_api/admin/views/report_view.ex +++ b/lib/pleroma/web/mastodon_api/admin/views/report_view.ex @@ -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}),