Class: Decidim::Admin::VerifyUserGroup

Inherits:
Command
  • Object
show all
Defined in:
decidim-admin/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

Methods inherited from Command

call, #evaluate, #method_missing, #respond_to_missing?, #transaction, #with_events

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 'decidim-admin/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

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Decidim::Command

Instance Method Details

#callObject

Executes the command. Broadcasts these events:

  • :ok when everything is valid.

Returns nothing.



22
23
24
25
26
27
# File 'decidim-admin/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