Sha256: da0b8c3d331a197ed0e2021261a62297561365e9e40c8fb3c6de28ba9261730c
Contents?: true
Size: 1.21 KB
Versions: 13
Compression:
Stored size: 1.21 KB
Contents
# frozen_string_literal: true module Decidim module Sortitions module Admin # Command that cancels a sortition class DestroySortition < Decidim::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 was not valid and we could not 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
13 entries across 13 versions & 1 rubygems