Revert "Mastodon API: Fake support for loading filters"
authorMartin Kühl <martin.kuehl@gmail.com>
Tue, 18 Sep 2018 09:57:33 +0000 (11:57 +0200)
committerMartin Kühl <martin.kuehl@gmail.com>
Tue, 18 Sep 2018 09:59:10 +0000 (11:59 +0200)
This reverts commit c1d07da4e18cc2acd11a5a131e1482aec5996552.

The fake support was superseded by 6e030129fb33926e6a5bd75c27af6f657f9da2a5 which actually implements the faked filters API.

This change removes the fake support and ensures that the actual implementation is used.

lib/pleroma/web/mastodon_api/mastodon_api_controller.ex
lib/pleroma/web/router.ex

index e5d4245c412a4a6383005cbf445e60fe0b1175e2..031fc1a5d687dd0beefeea2dd7ae2e35e9fe8dea 100644 (file)
@@ -1189,8 +1189,4 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIController do
       json(conn, [])
     end
   end
-
-  def filters(conn, _) do
-    json(conn, [])
-  end
 end
index 856679899db413f880b7ff5df29b7f660feed5e6..d324efb7e042b1e8f6c16a480485fe7a6282e7a4 100644 (file)
@@ -172,8 +172,6 @@ defmodule Pleroma.Web.Router do
     delete("/filters/:id", MastodonAPIController, :delete_filter)
 
     get("/suggestions", MastodonAPIController, :suggestions)
-
-    get("/filters", MastodonAPIController, :filters)
   end
 
   scope "/api/web", Pleroma.Web.MastodonAPI do