0cdc7bd8d9e1316b66ccbdfe3925be03dcc879ad
[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 require Logger
9
10 @doc "GET /api/v1/suggestions"
11 def index(conn, _) do
12 json(conn, [])
13 end
14 end