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