fix HTTP 500 in /api/v1/polls/:id/votes

This commit is contained in:
Daniel M Brasil 2023-06-26 17:27:52 -03:00
parent 18945f62e0
commit b2854be9ff
No known key found for this signature in database
GPG Key ID: AE1A28A226D1E692
1 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ class Api::V1::Polls::VotesController < Api::BaseController
before_action :set_poll
def create
VoteService.new.call(current_account, @poll, vote_params[:choices])
VoteService.new.call(current_account, @poll, vote_params)
render json: @poll, serializer: REST::PollSerializer
end
@ -22,6 +22,6 @@ class Api::V1::Polls::VotesController < Api::BaseController
end
def vote_params
params.permit(choices: [])
params.require(:choices)
end
end