/api/v1/suggestions endpoint

This commit is contained in:
hakabahitoyo 2018-07-14 00:21:38 +09:00
parent d93789dfde
commit f944f8157a
2 changed files with 7 additions and 0 deletions

View File

@ -1070,4 +1070,9 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIController do
|> put_status(500)
|> json("Something went wrong")
end
def suggestions(conn, _) do
conn
|> json("SUGGESTIONS!")
end
end

View File

@ -140,6 +140,8 @@ defmodule Pleroma.Web.Router do
get("/domain_blocks", MastodonAPIController, :domain_blocks)
post("/domain_blocks", MastodonAPIController, :block_domain)
delete("/domain_blocks", MastodonAPIController, :unblock_domain)
get("/suggestions", MastodonAPIController, :suggestions)
end
scope "/api/web", Pleroma.Web.MastodonAPI do