about summary refs log tree commit diff
path: root/app/controllers/api/v1/push
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/v1/push
parent1ca54375215c830930f4149704ce95b2841b3081 (diff)
Fix not being able to enable status notifications in Web Push API (#14822)
Diffstat (limited to 'app/controllers/api/v1/push')
-rw-r--r--app/controllers/api/v1/push/subscriptions_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/api/v1/push/subscriptions_controller.rb b/app/controllers/api/v1/push/subscriptions_controller.rb
index d34b333eb..0918c61e9 100644
--- a/app/controllers/api/v1/push/subscriptions_controller.rb
+++ b/app/controllers/api/v1/push/subscriptions_controller.rb
@@ -52,6 +52,6 @@ class Api::V1::Push::SubscriptionsController < Api::BaseController
   def data_params
     return {} if params[:data].blank?
 
-    params.require(:data).permit(alerts: [:follow, :follow_request, :favourite, :reblog, :mention, :poll])
+    params.require(:data).permit(alerts: [:follow, :follow_request, :favourite, :reblog, :mention, :poll, :status])
   end
 end