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, url: href,
remote_url: href, remote_url: href,
preview_url: href, preview_url: href,
text_url: href,
type: type type: type
} }
end end

View File

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