Apply 2 suggestion(s) to 2 file(s)

This commit is contained in:
rinpatch 2021-11-22 10:54:44 +00:00 committed by marcin mikołajczak
parent 8e040e098b
commit 588bcbac55
2 changed files with 1 additions and 3 deletions

View File

@ -331,7 +331,7 @@ defmodule Pleroma.Web.ApiSpec.AccountOperation do
def note_operation do
%Operation{
tags: ["Account actions"],
summary: "Create note",
summary: "Set a private note about a user.",
operationId: "AccountController.note",
security: [%{"oAuth" => ["follow", "write:accounts"]}],
requestBody: request_body("Parameters", note_request()),

View File

@ -447,8 +447,6 @@ defmodule Pleroma.Web.MastodonAPI.AccountController do
) do
with {:ok, _user_note} <- UserNote.create(noter, target, comment) do
render(conn, "relationship.json", user: noter, target: target)
else
{:error, message} -> json_response(conn, :forbidden, %{error: message})
end
end