2019-10-01 07:45:04 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 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
|
|
|
|
|
2020-05-13 10:15:24 +00:00
|
|
|
plug(Pleroma.Web.ApiSpec.CastAndValidate)
|
2020-06-24 06:57:27 +00:00
|
|
|
plug(Pleroma.Web.Plugs.OAuthScopesPlug, %{scopes: ["read"]} when action == :index)
|
2020-05-13 10:15:24 +00:00
|
|
|
|
|
|
|
def open_api_operation(action) do
|
|
|
|
operation = String.to_existing_atom("#{action}_operation")
|
|
|
|
apply(__MODULE__, operation, [])
|
|
|
|
end
|
|
|
|
|
|
|
|
def index_operation do
|
|
|
|
%OpenApiSpex.Operation{
|
|
|
|
tags: ["Suggestions"],
|
|
|
|
summary: "Follow suggestions (Not implemented)",
|
|
|
|
operationId: "SuggestionController.index",
|
|
|
|
responses: %{
|
|
|
|
200 => Pleroma.Web.ApiSpec.Helpers.empty_array_response()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
2020-04-06 07:20:44 +00:00
|
|
|
|
2019-10-01 07:45:04 +00:00
|
|
|
@doc "GET /api/v1/suggestions"
|
2020-04-06 07:20:44 +00:00
|
|
|
def index(conn, params),
|
|
|
|
do: Pleroma.Web.MastodonAPI.MastodonAPIController.empty_array(conn, params)
|
2019-10-01 07:45:04 +00:00
|
|
|
end
|