status_controller.ex: Posting media status without content defined

This commit is contained in:
Haelwenn (lanodan) Monnier 2019-09-28 01:21:28 +02:00
commit 9202904da9
No known key found for this signature in database
GPG key ID: D5B7A8E43C997DEE
2 changed files with 6 additions and 3 deletions

View file

@ -103,6 +103,10 @@ defmodule Pleroma.Web.MastodonAPI.StatusController do
end
end
def create(%{assigns: %{user: _user}} = conn, %{"media_ids" => _} = params) do
create(conn, Map.put(params, "status", ""))
end
@doc "GET /api/v1/statuses/:id"
def show(%{assigns: %{user: user}} = conn, %{"id" => id}) do
with %Activity{} = activity <- Activity.get_by_id_with_object(id),