Class: Decidim::Admin::BlockUser

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

Instance Method Summary collapse

Constructor Details

#initialize(form) ⇒ BlockUser

Public: Initializes the command.

form - BlockUserForm



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

def initialize(form)
  @form = form
end

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 'app/commands/decidim/admin/block_user.rb', line 19

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

  transaction do
    block!
    register_justification!
    notify_user!
  end

  broadcast(:ok, form.user)
end