aboutsummaryrefslogtreecommitdiff
path: root/lib/pleroma/web/mastodon_api/views/announcement_view.ex
blob: 93fdfb1f1603cdd173244ca54fff46aee39f41b6 (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.MastodonAPI.AnnouncementView do
  use Pleroma.Web, :view

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

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