Sha256: b165752e05c29b1f1ead187ee1fa1f1f52338aa9e147ceacf1cc131688c63fcd
Contents?: true
Size: 989 Bytes
Versions: 8
Compression:
Stored size: 989 Bytes
Contents
# frozen_string_literal: true module Decidim module Admin # A command with all the business logic when creating a static page topic. class CreateStaticPageTopic < Decidim::Command # Public: Initializes the command. # # form - A form object with the params. def initialize(form) @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? @topic = Decidim.traceability.create!( StaticPageTopic, @form.current_user, title: @form.title, description: @form.description, organization: @form.current_organization, show_in_footer: @form.show_in_footer, weight: @form.weight ) broadcast(:ok) end end end end
Version data entries
8 entries across 8 versions & 1 rubygems