Class: Decidim::Admin::BulkUnblockUsers
- Inherits:
-
Command
- Object
- Command
- Decidim::Admin::BulkUnblockUsers
- Defined in:
- app/commands/decidim/admin/bulk_unblock_users.rb
Instance Method Summary collapse
-
#call ⇒ Object
Executes the command.
-
#initialize(blocked_users, current_user) ⇒ BulkUnblockUsers
constructor
Public: Initializes the command.
Constructor Details
#initialize(blocked_users, current_user) ⇒ BulkUnblockUsers
Public: Initializes the command.
7 8 9 10 11 |
# File 'app/commands/decidim/admin/bulk_unblock_users.rb', line 7 def initialize(blocked_users, current_user) @blocked_users = blocked_users @current_user = current_user @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.
19 20 21 22 23 24 25 26 |
# File 'app/commands/decidim/admin/bulk_unblock_users.rb', line 19 def call return broadcast(:invalid) if blocked_users.blank? unblock_users! create_action_log if first_unblocked broadcast(:ok, **result) end |