Merge branch 'develop' of https://git.pleroma.social/pleroma/pleroma into develop
[akkoma] / lib / pleroma / web / mastodon_api / controllers / report_controller.ex
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.Web.MastodonAPI.ReportController do
6 alias Pleroma.Plugs.OAuthScopesPlug
7
8 use Pleroma.Web, :controller
9
10 action_fallback(Pleroma.Web.MastodonAPI.FallbackController)
11
12 plug(OAuthScopesPlug, %{scopes: ["write:reports"]} when action == :create)
13
14 plug(Pleroma.Plugs.EnsurePublicOrAuthenticatedPlug)
15
16 @doc "POST /api/v1/reports"
17 def create(%{assigns: %{user: user}} = conn, params) do
18 with {:ok, activity} <- Pleroma.Web.CommonAPI.report(user, params) do
19 render(conn, "show.json", activity: activity)
20 end
21 end
22 end