From: William Pitcock Date: Sat, 7 Apr 2018 22:27:00 +0000 (+0000) Subject: mastodon api: implement /api/v1/lists stub X-Git-Url: http://git.squeep.com/?a=commitdiff_plain;h=52a1a40d7da25d35204f884e6a0ea24cbab932ef;p=akkoma mastodon api: implement /api/v1/lists stub --- diff --git a/lib/pleroma/web/router.ex b/lib/pleroma/web/router.ex index 5f27f3caa..f24007784 100644 --- a/lib/pleroma/web/router.ex +++ b/lib/pleroma/web/router.ex @@ -100,6 +100,7 @@ defmodule Pleroma.Web.Router do get("/domain_blocks", MastodonAPIController, :empty_array) get("/follow_requests", MastodonAPIController, :empty_array) get("/mutes", MastodonAPIController, :empty_array) + get("/lists", MastodonAPIController, :empty_array) get("/timelines/home", MastodonAPIController, :home_timeline)