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, via_csv = false) ⇒ VerifyUserGroup

Public: Initializes the command.

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



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

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

Instance Method Details

#callObject

Executes the command. Broadcasts these events:

  • :ok when everything is valid.

Returns nothing.



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

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