1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Web.MastodonAPI.SubscriptionView do
9 def render("show.json", %{subscription: subscription}) do
11 id: to_string(subscription.id),
12 endpoint: subscription.endpoint,
13 alerts: Map.get(subscription.data, "alerts"),
14 server_key: server_key()
18 defp server_key, do: Keyword.get(Push.vapid_config(), :public_key)