Sha256: 9d5901aaf35330d402ccd4d1b194254b5464a4f2308c96b7ccf57e8b01dce1a0
Contents?: true
Size: 1.42 KB
Versions: 46
Compression:
Stored size: 1.42 KB
Contents
# frozen_string_literal: true module Decidim module ParticipatoryProcesses module Admin # A command with all the business logic when updated a participatory # process admin in the system. class UpdateParticipatoryProcessAdmin < NotifyRoleAssignedToParticipatoryProcess # Public: Initializes the command. # # form - A form object with the params. # participatory_process - The ParticipatoryProcess that will hold the # user role def initialize(form, user_role) @form = form @user_role = user_role 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? return broadcast(:invalid) unless user_role update_role! broadcast(:ok) end private attr_reader :form, :user_role def update_role! extra_info = { resource: { title: user_role.user.name } } Decidim.traceability.update!( user_role, form.current_user, { role: form.role }, extra_info ) send_notification user_role.user end end end end end
Version data entries
46 entries across 46 versions & 1 rubygems