Merge branch 'develop' of https://git.pleroma.social/pleroma/pleroma into develop
[akkoma] / lib / pleroma / web / mastodon_api / controllers / suggestion_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.SuggestionController do
6 use Pleroma.Web, :controller
7
8 alias Pleroma.Plugs.OAuthScopesPlug
9
10 require Logger
11
12 plug(OAuthScopesPlug, %{scopes: ["read"]} when action == :index)
13
14 @doc "GET /api/v1/suggestions"
15 def index(conn, params),
16 do: Pleroma.Web.MastodonAPI.MastodonAPIController.empty_array(conn, params)
17 end