2020-04-15 16:23:16 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Web.PleromaAPI.ChatView do
|
|
|
|
use Pleroma.Web, :view
|
|
|
|
|
|
|
|
alias Pleroma.Chat
|
|
|
|
|
|
|
|
def render("show.json", %{chat: %Chat{} = chat}) do
|
|
|
|
%{
|
2020-04-16 16:43:31 +00:00
|
|
|
id: chat.id |> to_string(),
|
2020-04-15 16:23:16 +00:00
|
|
|
recipient: chat.recipient,
|
|
|
|
unread: chat.unread
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def render("index.json", %{chats: chats}) do
|
|
|
|
render_many(chats, __MODULE__, "show.json")
|
|
|
|
end
|
|
|
|
end
|