Add an API endpoint for emoji.

This commit is contained in:
eal 2017-10-19 22:51:56 +03:00
commit fe7804e42d
3 changed files with 14 additions and 3 deletions

View file

@ -1,6 +1,7 @@
defmodule Pleroma.Web.TwitterAPI.UtilController do
use Pleroma.Web, :controller
alias Pleroma.Web
alias Pleroma.Formatter
alias Pleroma.{Repo, PasswordResetToken, User}
@ -68,4 +69,8 @@ defmodule Pleroma.Web.TwitterAPI.UtilController do
_ -> json(conn, version)
end
end
def emoji(conn, _params) do
json conn, Formatter.get_custom_emoji()
end
end