MastoAPI: Add accounts getting.

This commit is contained in:
Roger Braun 2017-09-13 17:36:02 +02:00
commit d168ef5a9e
3 changed files with 40 additions and 13 deletions

View file

@ -39,19 +39,6 @@ defmodule Pleroma.Web.Router do
post "/token", OAuthController, :token_exchange
end
scope "/api/v1", Pleroma.Web.MastodonAPI do
pipe_through :api
get "/instance", MastodonAPIController, :masto_instance
post "/apps", MastodonAPIController, :create_app
get "/timelines/public", MastodonAPIController, :public_timeline
get "/statuses/:id", MastodonAPIController, :get_status
get "/statuses/:id/context", MastodonAPIController, :get_context
get "/accounts/:id/statuses", MastodonAPIController, :user_statuses
end
scope "/api/v1", Pleroma.Web.MastodonAPI do
pipe_through :authenticated_api
@ -70,6 +57,20 @@ defmodule Pleroma.Web.Router do
get "/notifications", MastodonAPIController, :notifications
end
scope "/api/v1", Pleroma.Web.MastodonAPI do
pipe_through :api
get "/instance", MastodonAPIController, :masto_instance
post "/apps", MastodonAPIController, :create_app
get "/timelines/public", MastodonAPIController, :public_timeline
get "/statuses/:id", MastodonAPIController, :get_status
get "/statuses/:id/context", MastodonAPIController, :get_context
get "/accounts/:id/statuses", MastodonAPIController, :user_statuses
get "/accounts/:id", MastodonAPIController, :user
end
scope "/api", Pleroma.Web do
pipe_through :config