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
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