Sha256: a3849bd993cfa0462fc375760cddd08e269fa35540fefd82ef7b55cb63801e3b
Contents?: true
Size: 1.13 KB
Versions: 12
Compression:
Stored size: 1.13 KB
Contents
# frozen_string_literal: true module Decidim module Admin # A command with all the business logic when updating a static page topic. class UpdateStaticPageTopic < Decidim::Command # Public: Initializes the command. # # page - The StaticPageTopic to update # form - A form object with the params. def initialize(topic, form) @topic = topic @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_topic broadcast(:ok) end private attr_reader :form def update_topic Decidim.traceability.update!( @topic, form.current_user, attributes ) end def attributes { title: form.title, description: form.description, show_in_footer: form.show_in_footer, weight: form.weight } end end end end
Version data entries
12 entries across 12 versions & 1 rubygems