0
0
Fork 0

Fix web push notifications for polls (#10864)

Fixes #10861
This commit is contained in:
ThibG 2019-05-28 00:26:08 +02:00 committed by Eugen Rochko
parent 451e5980b6
commit fe3b863926
2 changed files with 3 additions and 2 deletions

View file

@ -51,6 +51,6 @@ class Api::V1::Push::SubscriptionsController < Api::BaseController
def data_params
return {} if params[:data].blank?
params.require(:data).permit(alerts: [:follow, :favourite, :reblog, :mention])
params.require(:data).permit(alerts: [:follow, :favourite, :reblog, :mention, :poll])
end
end