forked from AkkomaGang/akkoma
14 lines
426 B
Elixir
14 lines
426 B
Elixir
defmodule Pleroma.Web.MastodonAPI.PushSubscriptionView do
|
|
use Pleroma.Web, :view
|
|
alias Pleroma.Web.MastodonAPI.PushSubscriptionView
|
|
|
|
def render("push_subscription.json", %{subscription: subscription}) do
|
|
%{
|
|
id: to_string(subscription.id),
|
|
endpoint: subscription.endpoint,
|
|
alerts: Map.get(subscription.data, "alerts"),
|
|
# TODO: generate VAPID server key
|
|
server_key: "N/A"
|
|
}
|
|
end
|
|
end
|