aboutsummaryrefslogtreecommitdiff
path: root/lib/pleroma/web/admin_api/views/announcement_view.ex
blob: a35bd60cfb5f6ba7edbdbe14f457f5a87b62133c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Pleroma: A lightweight social networking server
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only

defmodule Pleroma.Web.AdminAPI.AnnouncementView do
  use Pleroma.Web, :view

  def render("index.json", %{announcements: announcements}) do
    render_many(announcements, __MODULE__, "show.json")
  end

  def render("show.json", %{announcement: announcement}) do
    Pleroma.Announcement.render_json(announcement, admin: true)
  end
end