Sha256: 57aa96f31c1543c49f9a15a643d0267c4537026cfb3ccb6d084421a9d927bcad
Contents?: true
Size: 1.06 KB
Versions: 16
Compression:
Stored size: 1.06 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.update!(rejected_at: Time.current, verified_at: nil) end end end end end
Version data entries
16 entries across 16 versions & 1 rubygems