Sha256: ca7607d3b6937bbc332fec770c5f8e932120d1da7651c0b1e66c33be95e2f499
Contents?: true
Size: 1.24 KB
Versions: 15
Compression:
Stored size: 1.24 KB
Contents
# frozen_string_literal: true module Decidim # A command with all the business logic to update a user group profile. class UpdateUserGroup < Rectify::Command # Public: Initializes the command. # # form - A form object with the params. # user_group - The user group to update def initialize(form, user_group) @form = form @user_group = user_group 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_user_group broadcast(:ok, @user_group) end private attr_reader :form, :user_group def update_user_group user_group_attributes = attributes user_group_attributes[:avatar] = form.avatar if form.avatar.present? user_group.update(user_group_attributes) end def attributes { email: form.email, name: form.name, nickname: form.nickname, about: form.about, avatar: form.avatar, extended_data: { phone: form.phone, document_number: form.document_number } } end end end
Version data entries
15 entries across 15 versions & 1 rubygems