logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git

announcement_view.ex (533B)


  1. # Pleroma: A lightweight social networking server
  2. # Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
  3. # SPDX-License-Identifier: AGPL-3.0-only
  4. defmodule Pleroma.Web.MastodonAPI.AnnouncementView do
  5. use Pleroma.Web, :view
  6. def render("index.json", %{announcements: announcements, user: user}) do
  7. render_many(announcements, __MODULE__, "show.json", user: user)
  8. end
  9. def render("show.json", %{announcement: announcement, user: user}) do
  10. Pleroma.Announcement.render_json(announcement, for: user)
  11. end
  12. end