Sha256: 721ec483e7962482c5a5c6fdb6a2fad2abab05c8bf2a2c9d100a2e0892c0300c
Contents?: true
Size: 1.23 KB
Versions: 6
Compression:
Stored size: 1.23 KB
Contents
# frozen_string_literal: true module Decidim module Assemblies module Admin # A command with all the business logic when destroying an assembly # admin in the system. class DestroyAssemblyAdmin < Decidim::Command # Public: Initializes the command. # # role - the AssemblyUserRole to destroy # current_user - the user performing this action def initialize(role, current_user) @role = role @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_role! broadcast(:ok) end private attr_reader :role, :current_user def destroy_role! extra_info = { resource: { title: role.user.name } } Decidim.traceability.perform_action!( "delete", role, current_user, extra_info ) do role.destroy! role end end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems