akkoma/lib/pleroma/web/mastodon_api/views/list_view.ex
2018-05-24 13:18:39 +03:00

16 lines
347 B
Elixir

defmodule Pleroma.Web.MastodonAPI.ListView do
use Pleroma.Web, :view
alias Pleroma.Web.MastodonAPI.ListView
def render("lists.json", %{lists: lists} = opts) do
render_many(lists, ListView, "list.json", opts)
end
def render("list.json", %{list: list}) do
%{
id: to_string(list.id),
title: list.title
}
end
end