Class: Decidim::Admin::BulkBlockUsers
- Inherits:
-
Command
- Object
- Command
- Decidim::Admin::BulkBlockUsers
- Defined in:
- app/commands/decidim/admin/bulk_block_users.rb
Instance Method Summary collapse
-
#call ⇒ Object
Executes the command.
-
#initialize(form) ⇒ BulkBlockUsers
constructor
Public: Initializes the command.
Constructor Details
#initialize(form) ⇒ BulkBlockUsers
Public: Initializes the command.
7 8 9 10 |
# File 'app/commands/decidim/admin/bulk_block_users.rb', line 7 def initialize(form) @form = form @result = { ok: [], ko: [] } end |
Instance Method Details
#call ⇒ Object
Executes the command. Broadcasts these events:
-
:ok when everything is valid, together with the resource.
-
:invalid if the resource is not reported
Returns nothing.
18 19 20 21 22 23 24 25 |
# File 'app/commands/decidim/admin/bulk_block_users.rb', line 18 def call return broadcast(:invalid) unless form.valid? block_all_users! create_action_log if first_blocked broadcast(:ok, **result) end |