forked from AkkomaGang/akkoma
Revert "Mastodon API: Fake support for loading filters"
This reverts commitc1d07da4e1
. The fake support was superseded by6e030129fb
which actually implements the faked filters API. This change removes the fake support and ensures that the actual implementation is used.
This commit is contained in:
parent
22c366a85f
commit
f4fcea5258
2 changed files with 0 additions and 6 deletions
|
@ -1189,8 +1189,4 @@ def suggestions(%{assigns: %{user: user}} = conn, _) do
|
||||||
json(conn, [])
|
json(conn, [])
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def filters(conn, _) do
|
|
||||||
json(conn, [])
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
|
@ -172,8 +172,6 @@ defmodule Pleroma.Web.Router do
|
||||||
delete("/filters/:id", MastodonAPIController, :delete_filter)
|
delete("/filters/:id", MastodonAPIController, :delete_filter)
|
||||||
|
|
||||||
get("/suggestions", MastodonAPIController, :suggestions)
|
get("/suggestions", MastodonAPIController, :suggestions)
|
||||||
|
|
||||||
get("/filters", MastodonAPIController, :filters)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
scope "/api/web", Pleroma.Web.MastodonAPI do
|
scope "/api/web", Pleroma.Web.MastodonAPI do
|
||||||
|
|
Loading…
Reference in a new issue