2019-10-01 01:45:04 -06:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-01 22:08:45 -07:00
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
2019-10-01 01:45:04 -06: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 06:21:50 -07:00
|
|
|
def index(conn, _) do
|
|
|
|
json(conn, [])
|
2019-10-01 01:45:04 -06:00
|
|
|
end
|
|
|
|
end
|