Class: Decidim::Consultations::QuestionVotesController
Instance Method Summary
collapse
enhance_controller, extended, included
Instance Method Details
#create ⇒ Object
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# File 'app/controllers/decidim/consultations/question_votes_controller.rb', line 13
def create
enforce_permission_to :vote, :question, question: current_question
vote_form = form(VoteForm).from_params(params, current_question: current_question)
VoteQuestion.call(vote_form) do
on(:ok) do
current_question.reload
render :update_vote_button
end
on(:invalid) do
render json: {
error: I18n.t("question_votes.create.error", scope: "decidim.consultations")
}, status: :unprocessable_entity
end
end
end
|
#destroy ⇒ Object
31
32
33
34
35
36
37
38
39
|
# File 'app/controllers/decidim/consultations/question_votes_controller.rb', line 31
def destroy
enforce_permission_to :unvote, :question, question: current_question
UnvoteQuestion.call(current_question, current_user) do
on(:ok) do
current_question.reload
render :update_vote_button
end
end
end
|