Sha256: 1699b0d9e8d4ddb9894e345cb5a71d855434d7cf413e33db118d41f2a69bb9c9
Contents?: true
Size: 1.47 KB
Versions: 12
Compression:
Stored size: 1.47 KB
Contents
# frozen_string_literal: true module Decidim module Conferences module Admin # A command with all the business logic when destroying a conference # registration type in the system. class DestroyRegistrationType < Decidim::Command # Public: Initializes the command. # # registration_type - the Partner to destroy # current_user - the user performing this action def initialize(registration_type, current_user) @registration_type = registration_type @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 destroy_registration_type! broadcast(:ok) end private attr_reader :registration_type, :current_user def destroy_registration_type! log_info = { resource: { title: registration_type.title }, participatory_space: { title: registration_type.conference.title } } Decidim.traceability.perform_action!( "delete", registration_type, current_user, log_info ) do registration_type.destroy! registration_type end end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems