2019-10-01 07:45:04 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-02 05:08:45 +00:00
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
2019-10-01 07:45:04 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Web.MastodonAPI.SuggestionController do
|
|
|
|
use Pleroma.Web, :controller
|
|
|
|
|
|
|
|
require Logger
|
|
|
|
|
|
|
|
@doc "GET /api/v1/suggestions"
|
2020-01-27 13:21:50 +00:00
|
|
|
def index(conn, _) do
|
|
|
|
json(conn, [])
|
2019-10-01 07:45:04 +00:00
|
|
|
end
|
|
|
|
end
|