about summary refs log tree commit diff
path: root/app/controllers/api/web
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2020-09-21 17:48:55 +0200
committerGitHub <noreply@github.com>2020-09-21 17:48:55 +0200
commit8c8bf0289f6b166d7a0f6145347d5cd345977828 (patch)
treed769a8580aa23381227c0e47866046076dfd1953 /app/controllers/api/web
parent1ca54375215c830930f4149704ce95b2841b3081 (diff)
Fix not being able to enable status notifications in Web Push API (#14822)
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 7916b82fa..1dce3e70f 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
         reblog: alerts_enabled,
         mention: alerts_enabled,
         poll: alerts_enabled,
+        status: 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, :follow_request, :favourite, :reblog, :mention, :poll])
+    @data_params ||= params.require(:data).permit(alerts: [:follow, :follow_request, :favourite, :reblog, :mention, :poll, :status])
   end
 end