Allow using cws in mastodon api.

This commit is contained in:
Roger Braun 2017-10-31 19:44:36 +01:00
parent c877583a4f
commit e014cc6ed8
2 changed files with 4 additions and 3 deletions

View File

@ -59,7 +59,8 @@ defmodule Pleroma.Web.CommonAPI do
tags <- Formatter.parse_tags(status),
content_html <- make_content_html(status, mentions, attachments, tags),
context <- make_context(inReplyTo),
object <- make_note_data(user.ap_id, to, context, content_html, attachments, inReplyTo, tags) do
cw <- data["spoiler_text"],
object <- make_note_data(user.ap_id, to, context, content_html, attachments, inReplyTo, tags, cw) do
res = ActivityPub.create(to, user, context, object)
User.increase_note_count(user)
res

View File

@ -50,9 +50,9 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIControllerTest do
conn = conn
|> assign(:user, user)
|> post("/api/v1/statuses", %{"status" => "cofe"})
|> post("/api/v1/statuses", %{"status" => "cofe", "spoiler_text" => "2hu"})
assert %{"content" => "cofe", "id" => id} = json_response(conn, 200)
assert %{"content" => "cofe", "id" => id, "spoiler_text" => "2hu"} = json_response(conn, 200)
assert Repo.get(Activity, id)
end