Class: Decidim::Admin::VerifyUserGroup

Inherits:
Rectify::Command
  • Object
show all
Defined in:
app/commands/decidim/admin/verify_user_group.rb

Overview

A command with all the business logic when verifying a user_group.

Instance Method Summary collapse

Constructor Details

#initialize(user_group, current_user) ⇒ VerifyUserGroup

Public: Initializes the command.

user_group - The user_group to verify current_user - the user performing the action



11
12
13
14
# File 'app/commands/decidim/admin/verify_user_group.rb', line 11

def initialize(user_group, current_user)
  @user_group = user_group
  @current_user = current_user
end

Instance Method Details

#callObject

Executes the command. Broadcasts these events:

  • :ok when everything is valid.

Returns nothing.



21
22
23
24
25
# File 'app/commands/decidim/admin/verify_user_group.rb', line 21

def call
  return broadcast(:invalid) unless @user_group.valid?
  verify_user_group
  broadcast(:ok)
end