diff options
author | eal <eal@waifu.club> | 2018-03-09 20:56:21 +0200 |
---|---|---|
committer | eal <eal@waifu.club> | 2018-03-09 20:58:00 +0200 |
commit | 18e1202a3bc9b405b2c35fcde7a6fa69fd47a888 (patch) | |
tree | ee001372cab34b3279ba96b246ba4cc04c9c4463 /lib/pleroma/web/router.ex | |
parent | c661cf504b9108b5d66f7a653e8a27f71ef9f07a (diff) | |
download | pleroma-18e1202a3bc9b405b2c35fcde7a6fa69fd47a888.tar.gz |
MastoAPI: Add unimplemented status card endpoint.
Diffstat (limited to 'lib/pleroma/web/router.ex')
-rw-r--r-- | lib/pleroma/web/router.ex | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/pleroma/web/router.ex b/lib/pleroma/web/router.ex index 520ac4a8c..3e9a8ba7b 100644 --- a/lib/pleroma/web/router.ex +++ b/lib/pleroma/web/router.ex @@ -132,6 +132,7 @@ defmodule Pleroma.Web.Router do get "/statuses/:id", MastodonAPIController, :get_status get "/statuses/:id/context", MastodonAPIController, :get_context + get "/statuses/:id/card", MastodonAPIController, :empty_object get "/statuses/:id/favourited_by", MastodonAPIController, :favourited_by get "/statuses/:id/reblogged_by", MastodonAPIController, :reblogged_by |