mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-10-31 22:04:07 +00:00
54ed8760ff
Reviewed-on: https://akkoma.dev/AkkomaGang/akkoma/pulls/85
16 lines
533 B
Elixir
16 lines
533 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.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
|