Render blurhashes in Mastodon API
This commit is contained in:
parent
6fd72e9e85
commit
2254e5e595
|
@ -435,7 +435,8 @@ def render("attachment.json", %{attachment: attachment}) do
|
||||||
text_url: href,
|
text_url: href,
|
||||||
type: type,
|
type: type,
|
||||||
description: attachment["name"],
|
description: attachment["name"],
|
||||||
pleroma: %{mime_type: media_type}
|
pleroma: %{mime_type: media_type},
|
||||||
|
blurhash: attachment["blurhash"]
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -420,6 +420,7 @@ test "attachments" do
|
||||||
"href" => "someurl"
|
"href" => "someurl"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"blurhash" => "UJJ8X[xYW,%Jtq%NNFbXB5j]IVM|9GV=WHRn",
|
||||||
"uuid" => 6
|
"uuid" => 6
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -431,7 +432,8 @@ test "attachments" do
|
||||||
preview_url: "someurl",
|
preview_url: "someurl",
|
||||||
text_url: "someurl",
|
text_url: "someurl",
|
||||||
description: nil,
|
description: nil,
|
||||||
pleroma: %{mime_type: "image/png"}
|
pleroma: %{mime_type: "image/png"},
|
||||||
|
blurhash: "UJJ8X[xYW,%Jtq%NNFbXB5j]IVM|9GV=WHRn"
|
||||||
}
|
}
|
||||||
|
|
||||||
api_spec = Pleroma.Web.ApiSpec.spec()
|
api_spec = Pleroma.Web.ApiSpec.spec()
|
||||||
|
|
Loading…
Reference in New Issue