Class: Decidim::Admin::RejectUserGroup
- Inherits:
-
Command
- Object
- Command
- Decidim::Admin::RejectUserGroup
- Defined in:
- app/commands/decidim/admin/reject_user_group.rb
Overview
A command with all the business logic when rejecting a user_group.
Instance Method Summary collapse
-
#call ⇒ Object
Executes the command.
-
#initialize(user_group, current_user) ⇒ RejectUserGroup
constructor
Public: Initializes the command.
Constructor Details
#initialize(user_group, current_user) ⇒ RejectUserGroup
Public: Initializes the command.
user_group - The user_group to reject current_user - The user performing the action
11 12 13 14 |
# File 'app/commands/decidim/admin/reject_user_group.rb', line 11 def initialize(user_group, current_user) @user_group = user_group @current_user = current_user end |
Instance Method Details
#call ⇒ Object
Executes the command. Broadcasts these events:
-
:ok when everything is valid.
-
:invalid if the form wasn’t valid and we couldn’t proceed.
Returns nothing.
22 23 24 25 26 27 |
# File 'app/commands/decidim/admin/reject_user_group.rb', line 22 def call return broadcast(:invalid) unless @user_group.valid? reject_user_group broadcast(:ok) end |