Class: Decidim::Admin::ProcessParticipatorySpacePrivateUserImportCsv

Inherits:
Command
  • Object
show all
Includes:
CustomImport
Defined in:
decidim-admin/app/commands/decidim/admin/process_participatory_space_private_user_import_csv.rb

Instance Method Summary collapse

Methods inherited from Command

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

Constructor Details

#initialize(form, current_user, private_users_to) ⇒ ProcessParticipatorySpacePrivateUserImportCsv

Public: Initializes the command.

form - the form object containing the uploaded file current_user - the user performing the action private_users_to - The private_users_to that will hold the user role



15
16
17
18
19
# File 'decidim-admin/app/commands/decidim/admin/process_participatory_space_private_user_import_csv.rb', line 15

def initialize(form, current_user, private_users_to)
  @form = form
  @current_user = current_user
  @private_users_to = private_users_to
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.

  • :invalid if the form was not valid and we could not proceed.

Returns nothing.



27
28
29
30
31
32
# File 'decidim-admin/app/commands/decidim/admin/process_participatory_space_private_user_import_csv.rb', line 27

def call
  return broadcast(:invalid) unless @form.valid?

  process_csv
  broadcast(:ok)
end