forked from AkkomaGang/akkoma
Allow using cws in mastodon api.
This commit is contained in:
parent
c877583a4f
commit
e014cc6ed8
2 changed files with 4 additions and 3 deletions
|
@ -59,7 +59,8 @@ def post(user, %{"status" => status} = data) do
|
||||||
tags <- Formatter.parse_tags(status),
|
tags <- Formatter.parse_tags(status),
|
||||||
content_html <- make_content_html(status, mentions, attachments, tags),
|
content_html <- make_content_html(status, mentions, attachments, tags),
|
||||||
context <- make_context(inReplyTo),
|
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)
|
res = ActivityPub.create(to, user, context, object)
|
||||||
User.increase_note_count(user)
|
User.increase_note_count(user)
|
||||||
res
|
res
|
||||||
|
|
|
@ -50,9 +50,9 @@ test "posting a status", %{conn: conn} do
|
||||||
|
|
||||||
conn = conn
|
conn = conn
|
||||||
|> assign(:user, user)
|
|> 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)
|
assert Repo.get(Activity, id)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue