Sha256: 17d15b30064ef4785ea8e6c08a7774bcba56f8f2b8fa9052160e5fae0f563472
Contents?: true
Size: 1.01 KB
Versions: 13
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 was not valid and we could not 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
13 entries across 13 versions & 1 rubygems