Class: Decidim::Admin::UnblockUser
- Inherits:
-
Command
- Object
- Command
- Decidim::Admin::UnblockUser
- Defined in:
- app/commands/decidim/admin/unblock_user.rb
Instance Method Summary collapse
-
#call ⇒ Object
Executes the command.
-
#initialize(blocked_user, current_user) ⇒ UnblockUser
constructor
Public: Initializes the command.
Constructor Details
#initialize(blocked_user, current_user) ⇒ UnblockUser
Public: Initializes the command.
blocked_user - the user that is unblocked current_user - the user performing the action
10 11 12 13 |
# File 'app/commands/decidim/admin/unblock_user.rb', line 10 def initialize(blocked_user, current_user) @blocked_user = blocked_user @current_user = current_user 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.
21 22 23 24 25 26 |
# File 'app/commands/decidim/admin/unblock_user.rb', line 21 def call return broadcast(:invalid) unless @blocked_user.blocked? unblock! broadcast(:ok, @blocked_user) end |