Add GET /api/v1/apps/verify_credentials

This commit is contained in:
eugenijm 2019-03-26 21:42:03 +03:00
commit 691d1208b5
4 changed files with 57 additions and 0 deletions

View file

@ -328,6 +328,7 @@ defmodule Pleroma.Web.Router do
get("/instance", MastodonAPIController, :masto_instance)
get("/instance/peers", MastodonAPIController, :peers)
post("/apps", MastodonAPIController, :create_app)
get("/apps/verify_credentials", MastodonAPIController, :verify_app_credentials)
get("/custom_emojis", MastodonAPIController, :custom_emojis)
get("/statuses/:id/card", MastodonAPIController, :status_card)