Sha256: e07babd80953784d0522eb9a52dd3cc21b058b2f29488e4483c8b35d53710463
Contents?: true
Size: 1.01 KB
Versions: 12
Compression:
Stored size: 1.01 KB
Contents
# frozen_string_literal: true module Decidim module Admin # A command with all the business logic when updating an area. class UpdateArea < Decidim::Command # Public: Initializes the command. # # area - The Area to update # form - A form object with the params. def initialize(area, form) @area = area @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_area broadcast(:ok) end private attr_reader :form def update_area Decidim.traceability.update!( @area, form.current_user, attributes ) end def attributes { name: form.name, area_type: form.area_type } end end end end
Version data entries
12 entries across 12 versions & 1 rubygems