MastoAPI: Also return text_url in attachments.

This commit is contained in:
Roger Braun 2017-09-14 08:38:48 +02:00
parent 7f3ce5c1a0
commit 6258c6b6b3
2 changed files with 3 additions and 1 deletions

View File

@ -73,6 +73,7 @@ defmodule Pleroma.Web.MastodonAPI.StatusView do
url: href,
remote_url: href,
preview_url: href,
text_url: href,
type: type
}
end

View File

@ -71,7 +71,8 @@ defmodule Pleroma.Web.MastodonAPI.StatusViewTest do
type: "image",
url: "someurl",
remote_url: "someurl",
preview_url: "someurl"
preview_url: "someurl",
text_url: "someurl"
}
assert expected == StatusView.render("attachment.json", %{attachment: object})