1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Web.MastodonAPI.CustomEmojiController do
6 use Pleroma.Web, :controller
8 plug(Pleroma.Web.ApiSpec.CastAndValidate)
10 plug(:skip_auth when action == :index)
12 defdelegate open_api_operation(action), to: Pleroma.Web.ApiSpec.CustomEmojiOperation
14 def index(conn, _params) do
15 render(conn, "index.json", custom_emojis: Pleroma.Emoji.get_all())