Page MenuHomePhorge

list_view.ex
No OneTemporary

Size
506 B
Referenced Files
None
Subscribers
None

list_view.ex

# Pleroma: A lightweight social networking server
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule Pleroma.Web.MastodonAPI.ListView do
use Pleroma.Web, :view
alias Pleroma.Web.MastodonAPI.ListView
def render("index.json", %{lists: lists} = opts) do
render_many(lists, ListView, "show.json", opts)
end
def render("show.json", %{list: list}) do
%{
id: to_string(list.id),
title: list.title
}
end
end

File Metadata

Mime Type
text/x-ruby
Expires
Tue, Jan 20, 1:46 PM (1 d, 3 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
972690
Default Alt Text
list_view.ex (506 B)

Event Timeline