akkoma/lib/pleroma/web/mastodon_api/views/push_subscription_view.ex

12 lines
308 B
Elixir
Raw Normal View History

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,
2018-12-06 13:42:00 +00:00
alerts: Map.get(subscription.data, "alerts")
}
end
end