Sha256: 9a11cf62d96c0f9132b8fb80b77ad3d4eabfb18852e2760f45c5d69607317b41
Contents?: true
Size: 1.21 KB
Versions: 8
Compression:
Stored size: 1.21 KB
Contents
# frozen_string_literal: true require "csv" module Decidim module Admin class ProcessParticipatorySpacePrivateUserImportCsv < Decidim::Command include Decidim::Admin::CustomImport # 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 def initialize(form, current_user, private_users_to) @form = form @current_user = current_user @private_users_to = private_users_to end # 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. def call return broadcast(:invalid) unless @form.valid? process_csv broadcast(:ok) end private def process_csv process_import_file(@form.file) do |(email, user_name)| ImportParticipatorySpacePrivateUserCsvJob.perform_later(email, user_name, @private_users_to, @current_user) if email.present? && user_name.present? end end end end end
Version data entries
8 entries across 8 versions & 1 rubygems