Class: Decidim::Admin::BlockUser
- Inherits:
-
Command
- Object
- Command
- Decidim::Admin::BlockUser
- Defined in:
- app/commands/decidim/admin/block_user.rb
Instance Method Summary collapse
-
#call ⇒ Object
Executes the command.
-
#initialize(form) ⇒ BlockUser
constructor
Public: Initializes the command.
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
#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 27 28 29 30 |
# File 'app/commands/decidim/admin/block_user.rb', line 19 def call return broadcast(:invalid) unless form.valid? transaction do find_or_create_moderation! register_justification! block! notify_user! end broadcast(:ok, form.user) end |