Sha256: 166d91a60907378e2e521046ea607500c4a1a2f9852d7161f9f7293f2988a9df
Contents?: true
Size: 1.21 KB
Versions: 39
Compression:
Stored size: 1.21 KB
Contents
# frozen_string_literal: true module Decidim module Sortitions module Admin # Command that cancels a sortition class DestroySortition < Rectify::Command # Public: Initializes the command. # # form - A form object with the params. def initialize(form) @form = form 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) if form.invalid? destroy_sortition broadcast(:ok, sortition) end private attr_reader :form def destroy_sortition Decidim.traceability.perform_action!( :delete, sortition, form.current_user ) do sortition.update( cancel_reason: form.cancel_reason, cancelled_on: Time.now.utc, cancelled_by_user: form.current_user ) end end def sortition @sortition ||= Sortition.find(form.id) end end end end end
Version data entries
39 entries across 39 versions & 1 rubygems