Class: Decidim::Admin::BlockUser

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

Instance Method Summary collapse

Methods inherited from Command

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

Constructor Details

#initialize(form) ⇒ BlockUser

Public: Initializes the command.

form - BlockUserForm



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

def initialize(form)
  @form = form
end

Dynamic Method Handling

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

Instance Method Details

#callObject

Executes the command. Broadcasts these events:

  • :ok when everything is valid, together with the resource.

  • :invalid if the resource is not reported

Returns nothing.



19
20
21
22
23
24
25
26
27
28
29
# File 'decidim-admin/app/commands/decidim/admin/block_user.rb', line 19

def call
  return broadcast(:invalid) unless form.valid?

  with_events(with_transaction: true) do
    find_or_create_moderation!
    register_justification!
    block!
  end

  broadcast(:ok, form.user)
end