Sha256: 0e7ae722523f864665cd82d56e271e390a74f0281789ab4e6a5de4538db0b9d1
Contents?: true
Size: 1.01 KB
Versions: 39
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 < Rectify::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
39 entries across 39 versions & 1 rubygems