Sha256: f6d64679d7c4bae91b8161067f38ea9de3e1ade44aea91e99a6b8b4af2d2a971
Contents?: true
Size: 950 Bytes
Versions: 54
Compression:
Stored size: 950 Bytes
Contents
# frozen_string_literal: true module Decidim module Admin # A command with all the business logic when updating a usergroup. class UpdateUserGroups < Rectify::Command # Public: Initializes the command. # # scope - The Scope to update # form - A form object with the params. def initialize(user_group) @user_group = user_group @form = form 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? update_scope broadcast(:ok) end private attr_reader :form def update_scope @scope.update_attributes!(attributes) end def attributes { name: form.name } end end end end
Version data entries
54 entries across 54 versions & 2 rubygems