diff options
author | rinpatch <rinpatch@sdf.org> | 2019-04-02 05:31:41 +0000 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2019-04-02 05:31:41 +0000 |
commit | f8aa917eef9280631a5cd2c95cf1db8fab6e14e5 (patch) | |
tree | f91e6c501259e3389230d344cffc1cb1ca3a6454 | |
parent | fd7dd8f9a2f052531bb17fe51d3678787bd8b4c8 (diff) | |
parent | f56eef8d8c2400f2ecc1d346758a70d89deda8dc (diff) | |
download | pleroma-f8aa917eef9280631a5cd2c95cf1db8fab6e14e5.tar.gz |
Merge branch 'bugfix/mastoapi/2.8.0-fake_identityproof' into 'develop'
router: Add fake identity proof endpoint
See merge request pleroma/pleroma!1006
-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 9ccb4e535..f4418cec0 100644 --- a/lib/pleroma/web/router.ex +++ b/lib/pleroma/web/router.ex @@ -218,6 +218,7 @@ defmodule Pleroma.Web.Router do get("/accounts/search", MastodonAPIController, :account_search) get("/accounts/:id/lists", MastodonAPIController, :account_lists) + get("/accounts/:id/identity_proofs", MastodonAPIController, :empty_array) get("/follow_requests", MastodonAPIController, :follow_requests) get("/blocks", MastodonAPIController, :blocks) |