Implement API actions on packs

That incldues listing them and downloading them from other instances
or from the remote url
This commit is contained in:
Ekaterina Vaartis 2019-08-11 00:39:21 +03:00
commit b791a08656
2 changed files with 193 additions and 0 deletions

View file

@ -207,6 +207,28 @@ defmodule Pleroma.Web.Router do
get("/moderation_log", AdminAPIController, :list_log)
end
scope "/api/pleroma/emoji", Pleroma.Web.EmojiAPI do
scope [] do
pipe_through([:admin_api, :oauth_write])
post("/reload", EmojiAPIController, :reload)
end
scope "/packs" do
# Modifying packs
pipe_through([:admin_api, :oauth_write])
post("/download_from", EmojiAPIController, :download_from)
end
scope "/packs" do
# Pack info / downloading
get("/list", EmojiAPIController, :list_packs)
get("/download_shared/:name", EmojiAPIController, :download_shared)
get("/sha_of_shared/:name", EmojiAPIController, :sha_of_shared)
end
end
scope "/", Pleroma.Web.TwitterAPI do
pipe_through(:pleroma_html)