Revert "Pleroma.Web.AdminAPI.InstanceDocumentController: fix dialyzer error"

This reverts commit a3024dd5ac.
This commit is contained in:
Mark Felder 2024-01-30 14:13:56 -05:00
parent 1fa1a93cd6
commit 39241107d9
2 changed files with 3 additions and 3 deletions

View File

@ -27,7 +27,7 @@ defmodule Pleroma.Web.AdminAPI.InstanceDocumentController do
end
end
def update(%{body_params: %{"file" => file}} = conn, %{name: document_name}) do
def update(%{body_params: %{file: file}} = conn, %{name: document_name}) do
with {:ok, url} <- InstanceDocument.put(document_name, file.path) do
json(conn, %{"url" => url})
end

View File

@ -61,9 +61,9 @@ defmodule Pleroma.Web.ApiSpec.Admin.InstanceDocumentOperation do
title: "UpdateRequest",
description: "POST body for uploading the file",
type: :object,
required: ["file"],
required: [:file],
properties: %{
"file" => %Schema{
file: %Schema{
type: :string,
format: :binary,
description: "The file to be uploaded, using multipart form data."