forked from AkkomaGang/akkoma
11 lines
308 B
Elixir
11 lines
308 B
Elixir
defmodule Pleroma.Web.MastodonAPI.PushSubscriptionView do
|
|
use Pleroma.Web, :view
|
|
|
|
def render("push_subscription.json", %{subscription: subscription}) do
|
|
%{
|
|
id: to_string(subscription.id),
|
|
endpoint: subscription.endpoint,
|
|
alerts: Map.get(subscription.data, "alerts")
|
|
}
|
|
end
|
|
end
|