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

@ -33,14 +33,15 @@ defmodule Pleroma.Web.Router do
plug :accepts, ["html", "json"]
end
pipeline :password_reset do
plug :accepts, ["html"]
pipeline :pleroma_api do
plug :accepts, ["html", "json"]
end
scope "/api/pleroma", Pleroma.Web.TwitterAPI do
pipe_through :password_reset
pipe_through :pleroma_api
get "/password_reset/:token", UtilController, :show_password_reset
post "/password_reset", UtilController, :password_reset
get "/emoji", UtilController, :emoji
end
scope "/oauth", Pleroma.Web.OAuth do