Sha256: a0d1cc39afae7386919c85255b9791ee42cee5138df03562c001b0c209ac7028
Contents?: true
Size: 1.01 KB
Versions: 12
Compression:
Stored size: 1.01 KB
Contents
# frozen_string_literal: true module Decidim module Admin # A command with all the business logic when rejecting a user_group. class RejectUserGroup < Decidim::Command # Public: Initializes the command. # # user_group - The user_group to reject # current_user - The user performing the action def initialize(user_group, current_user) @user_group = user_group @current_user = current_user end # Executes the command. Broadcasts these events: # # - :ok when everything is valid. # - :invalid if the form wasn't valid and we couldn't proceed. # # Returns nothing. def call return broadcast(:invalid) unless @user_group.valid? reject_user_group broadcast(:ok) end private def reject_user_group Decidim.traceability.perform_action!( "reject", @user_group, @current_user ) do @user_group.reject! end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems