Add an API endpoint for emoji.
This commit is contained in:
parent
38f3908c14
commit
fe7804e42d
3 changed files with 14 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue