feat: Add support for bulk snooze until (#9360)

This commit is contained in:
Muhsin Keloth
2024-05-08 08:55:31 +05:30
committed by GitHub
parent 2ef767d60f
commit d649bd2dfd
3 changed files with 24 additions and 1 deletions

View File

@@ -21,6 +21,6 @@ class Api::V1::Accounts::BulkActionsController < Api::V1::Accounts::BaseControll
end
def permitted_params
params.permit(:type, ids: [], fields: [:status, :assignee_id, :team_id], labels: [add: [], remove: []])
params.permit(:type, :snoozed_until, ids: [], fields: [:status, :assignee_id, :team_id], labels: [add: [], remove: []])
end
end