ChatController: Don't return chats for user you've blocked.

This commit is contained in:
lain 2020-05-12 16:43:04 +02:00
commit c0ea5c60e4
2 changed files with 27 additions and 1 deletions

View file

@ -102,10 +102,13 @@ defmodule Pleroma.Web.PleromaAPI.ChatController do
end
end
def index(%{assigns: %{user: %{id: user_id}}} = conn, params) do
def index(%{assigns: %{user: %{id: user_id} = user}} = conn, params) do
blocked_ap_ids = User.blocked_users_ap_ids(user)
chats =
from(c in Chat,
where: c.user_id == ^user_id,
where: c.recipient not in ^blocked_ap_ids,
order_by: [desc: c.updated_at]
)
|> Pagination.fetch_paginated(params |> stringify_keys)