Class: Decidim::Elections::Admin::DestroyQuestion

Inherits:
Command
  • Object
show all
Defined in:
decidim-elections/app/commands/decidim/elections/admin/destroy_question.rb

Overview

This command is executed when the user destroys a Question from the admin panel.

Instance Method Summary collapse

Methods inherited from Command

call, #evaluate, #method_missing, #respond_to_missing?, #transaction, #with_events

Constructor Details

#initialize(question, current_user) ⇒ DestroyQuestion

Returns a new instance of DestroyQuestion.



9
10
11
12
# File 'decidim-elections/app/commands/decidim/elections/admin/destroy_question.rb', line 9

def initialize(question, current_user)
  @question = question
  @current_user = current_user
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Decidim::Command

Instance Method Details

#callObject

Destroys the question if valid.

Broadcasts :ok if successful, :invalid otherwise.



17
18
19
20
21
22
23
# File 'decidim-elections/app/commands/decidim/elections/admin/destroy_question.rb', line 17

def call
  return broadcast(:invalid) if invalid?

  destroy_question!

  broadcast(:ok, question)
end