mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-05 08:03:11 +00:00
12 lines
308 B
Elixir
12 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
|