Sha256: 884f5b03ead0301afd2e482cb911396902a710d24854f427c6d0807162d1342f
Contents?: true
Size: 1 KB
Versions: 31
Compression:
Stored size: 1 KB
Contents
# frozen_string_literal: true module Decidim module Meetings module Admin # This command is executed when the user destroys a Meeting from the admin # panel. class DestroyMeeting < Rectify::Command # Initializes a CloseMeeting Command. # # meeting - The current instance of the page to be closed. # current_user - the user performing the action def initialize(meeting, current_user) @meeting = meeting @current_user = current_user end # Destroys the meeting if valid. # # Broadcasts :ok if successful, :invalid otherwise. def call destroy_meeting broadcast(:ok) end private attr_reader :current_user, :meeting def destroy_meeting Decidim.traceability.perform_action!( :delete, meeting, current_user ) do meeting.destroy! end end end end end end
Version data entries
31 entries across 31 versions & 1 rubygems