Class: Decidim::Elections::Admin::UpdateTrusteeParticipatorySpace

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

Overview

This command is executed when the user updates a trustee status 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(trustee_participatory_space) ⇒ UpdateTrusteeParticipatorySpace

Public: Initializes the command.

trustee_participatory_space - A trustee_participatory_space



12
13
14
# File 'decidim-elections/app/commands/decidim/elections/admin/update_trustee_participatory_space.rb', line 12

def initialize(trustee_participatory_space)
  @trustee_participatory_space = trustee_participatory_space
end

Dynamic Method Handling

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

Instance Method Details

#callObject

Toggle the considered attr if valid.

Broadcasts :ok if successful, :invalid otherwise.



19
20
21
22
23
24
25
# File 'decidim-elections/app/commands/decidim/elections/admin/update_trustee_participatory_space.rb', line 19

def call
  return broadcast(:invalid) unless trustee_participatory_space

  update_trustee_participatory_space!

  broadcast(:ok, trustee_participatory_space.trustee)
end