Merge branch 'automatic-authentication-and-instance-publicity-checks' 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 @doc "POST /api/v1/reports"
15 def create(%{assigns: %{user: user}} = conn, params) do
16 with {:ok, activity} <- Pleroma.Web.CommonAPI.report(user, params) do
17 render(conn, "show.json", activity: activity)
18 end
19 end
20 end