about summary refs log tree commit diff
path: root/app/controllers/api/web
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2019-05-28 00:26:08 +0200
committerEugen Rochko <eugen@zeonfederated.com>2019-05-28 00:26:08 +0200
commitfe3b863926d7115f652dfa7b6c1cf7fa8b1d7c4c (patch)
treefbb651017d74bf15f0d2ad0a27823673851ad01b /app/controllers/api/web
parent451e5980b609eca5b20041963aca0098508475d7 (diff)
Fix web push notifications for polls (#10864)
Fixes #10861
Diffstat (limited to 'app/controllers/api/web')
-rw-r--r--app/controllers/api/web/push_subscriptions_controller.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/controllers/api/web/push_subscriptions_controller.rb b/app/controllers/api/web/push_subscriptions_controller.rb
index fe8e42580..d8153e082 100644
--- a/app/controllers/api/web/push_subscriptions_controller.rb
+++ b/app/controllers/api/web/push_subscriptions_controller.rb
@@ -22,6 +22,7 @@ class Api::Web::PushSubscriptionsController < Api::Web::BaseController
         favourite: alerts_enabled,
         reblog: alerts_enabled,
         mention: alerts_enabled,
+        poll: alerts_enabled,
       },
     }
 
@@ -57,6 +58,6 @@ class Api::Web::PushSubscriptionsController < Api::Web::BaseController
   end
 
   def data_params
-    @data_params ||= params.require(:data).permit(alerts: [:follow, :favourite, :reblog, :mention])
+    @data_params ||= params.require(:data).permit(alerts: [:follow, :favourite, :reblog, :mention, :poll])
   end
 end