Merge branch 'develop' of https://git.pleroma.social/pleroma/pleroma into develop
[akkoma] / lib / pleroma / web / mastodon_api / controllers / custom_emoji_controller.ex
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.Web.MastodonAPI.CustomEmojiController do
6 use Pleroma.Web, :controller
7
8 def index(conn, _params) do
9 render(conn, "index.json", custom_emojis: Pleroma.Emoji.get_all())
10 end
11 end