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
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
assert other_user.id == relationship["id"]
end
end
+
+ test "account fetching", %{conn: conn} do
+ user = insert(:user)
+
+ conn = conn
+ |> get("/api/v1/accounts/#{user.id}")
+
+ assert %{"id" => id} = json_response(conn, 200)
+ assert id == user.id
+
+ conn = build_conn()
+ |> get("/api/v1/accounts/-1")
+
+ assert %{"error" => "Can't find user"} = json_response(conn, 404)
+ end
end