about summary refs log tree commit diff
path: root/app/serializers/rest/web_push_subscription_serializer.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/serializers/rest/web_push_subscription_serializer.rb')
-rw-r--r--app/serializers/rest/web_push_subscription_serializer.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/app/serializers/rest/web_push_subscription_serializer.rb b/app/serializers/rest/web_push_subscription_serializer.rb
new file mode 100644
index 000000000..7fd952a56
--- /dev/null
+++ b/app/serializers/rest/web_push_subscription_serializer.rb
@@ -0,0 +1,13 @@
+# frozen_string_literal: true
+
+class REST::WebPushSubscriptionSerializer < ActiveModel::Serializer
+  attributes :id, :endpoint, :alerts, :server_key
+
+  def alerts
+    object.data&.dig('alerts') || {}
+  end
+
+  def server_key
+    Rails.configuration.x.vapid_public_key
+  end
+end