Sha256: d9ee759b064927f9c4f69523ce59a4088b1b06cb9153f34afe3bd6e57e7498a1
Contents?: true
Size: 941 Bytes
Versions: 18
Compression:
Stored size: 941 Bytes
Contents
# frozen_string_literal: true module Decidim module Admin # A command with all the business logic when updating a usergroup. class UpdateUserGroups < Decidim::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 was not valid and we could not 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) end def attributes { name: form.name } end end end end
Version data entries
18 entries across 18 versions & 1 rubygems