logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git

custom_emoji_controller.ex (536B)


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