mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-01 06:14:07 +00:00
54ed8760ff
Reviewed-on: https://akkoma.dev/AkkomaGang/akkoma/pulls/85
16 lines
496 B
Elixir
16 lines
496 B
Elixir
# 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
|